From: hniksic Date: Thu, 9 Feb 2006 10:24:07 +0000 (-0800) Subject: [svn] Doc fix. X-Git-Tag: v1.13~682 X-Git-Url: http://sjero.net/git/?p=wget;a=commitdiff_plain;h=15f7e83216dd2be14763c1d86691337204fafa63 [svn] Doc fix. --- diff --git a/src/utils.c b/src/utils.c index c523f639..667efce6 100644 --- a/src/utils.c +++ b/src/utils.c @@ -1418,15 +1418,15 @@ numdigit (wgint number) The speedup may make a difference in programs that frequently convert numbers to strings. Some implementations of sprintf, - particularly the one in GNU libc, have been known to be extremely - slow when converting integers to strings. + particularly the one in some versions of GNU libc, have been known + to be quite slow when converting integers to strings. Return the pointer to the location where the terminating zero was printed. (Equivalent to calling buffer+strlen(buffer) after the function is done.) - BUFFER should be big enough to accept as many bytes as you expect - the number to take up. On machines with 64-bit longs the maximum + BUFFER should be large enough to accept as many bytes as you expect + the number to take up. On machines with 64-bit wgints the maximum needed size is 24 bytes. That includes the digits needed for the largest 64-bit number, the `-' sign in case it's negative, and the terminating '\0'. */