Index: include/stdlib.h =================================================================== RCS file: /cvsroot/avr-libc/avr-libc/include/stdlib.h,v retrieving revision 1.16 diff -u -u -r1.16 stdlib.h --- include/stdlib.h 18 Oct 2003 20:18:57 -0000 1.16 +++ include/stdlib.h 5 Mar 2004 22:13:38 -0000 @@ -569,6 +569,8 @@ If \c flags has the DTOSTRE_PLUS_SIGN bit set, a plus sign will be used instead of a space character in this case. + + The dtostre() function returns the pointer to the converted string \c s. */ extern char *dtostre(double __val, char *__s, unsigned char __prec, unsigned char __flags); @@ -582,6 +584,8 @@ width of the output string (including the \c '.' and the possible sign for negative values) is given in \c width, and \c prec determines the number of digits after the decimal sign. + + The dtostrf() function returns the pointer to the converted string \c s. */ extern char *dtostrf(double __val, char __width, char __prec, char *__s);