Re: OpenBSD's LIBC C99 missing %a string format support

2006-04-30 Thread Leonardo Rodrigues
I've been tinkering with the code a bit, and found a dirty workaround. I changed all the snprintf's and sscanf's calls using %a to %f. Things compiled and installed fine, and the app (window manager enlightenment dr17, code from CVS) seems to be working fine as far as I have tested, though I am

Re: OpenBSD's LIBC C99 missing %a string format support

2006-04-28 Thread Gustavo Rios
I could suggest one to avoid ANSI C functions as much as possible. Write his/her own ones. Why? The motivation has been stated by you: portability concerns. I could do it ... On 4/28/06, Leonardo Rodrigues [EMAIL PROTECTED] wrote: Hello everyone! So, I've been trying to build some apps here

Re: OpenBSD's LIBC C99 missing %a string format support

2006-04-28 Thread Otto Moerbeek
On Fri, 28 Apr 2006, Gustavo Rios wrote: I could suggest one to avoid ANSI C functions as much as possible. Write his/her own ones. Why? The motivation has been stated by you: portability concerns. Only if you believe the code you produce is better than the result of the effort of hundreds of

Re: OpenBSD's LIBC C99 missing %a string format support

2006-04-28 Thread Giancarlo Razzolini
Otto Moerbeek wrote: On Fri, 28 Apr 2006, Gustavo Rios wrote: I could suggest one to avoid ANSI C functions as much as possible. Write his/her own ones. Why? The motivation has been stated by you: portability concerns. Only if you believe the code you produce is better than the result of