Sorry Everyone! I ment sprintf isn't standartized.

Here is the BSD definition, from Sun's site, you can see it returns
the pointer to the string:

http://docs.sun.com/ab2/coll.40.5/REFMAN3/@Ab2PageView/1370136?DwebQuery=ssc
anf&Ab2Lang=C&Ab2Enc=iso-8859-1


char * sprintf( s, format, va_list);


Here is the Linux sprintf, you can see it retuns int, the
number of char actually printed:

http://www.linux.com/development/man/3/sprintf/

int sprintf(char *str, const char *format, ...);


Well, sorry for the confusion.

C doesn't even have a standard, on a function many of us
used many times ( you know it is a security hazard, yes ?)

How can you come and tell me that C is a standard language.

--ury


=================================================================
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]

Reply via email to