diff options
Diffstat (limited to 'manual/stdio.texi')
-rw-r--r-- | manual/stdio.texi | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/manual/stdio.texi b/manual/stdio.texi index 40d9f227b4..58605702e0 100644 --- a/manual/stdio.texi +++ b/manual/stdio.texi @@ -1516,10 +1516,10 @@ produce. The trailing null character is counted towards this limit, so you should allocate at least @var{size} characters for the string @var{s}. The return value is the number of characters which would be generated -for the given input. If this value is greater or equal to @var{size}, -not all characters from the result have been stored in @var{s}. You -should try again with a bigger output string. Here is an example of -doing this: +for the given input, excluding the trailing null. If this value is +greater or equal to @var{size}, not all characters from the result have +been stored in @var{s}. You should try again with a bigger output +string. Here is an example of doing this: @smallexample @group |