diff options
Diffstat (limited to 'manual')
-rw-r--r-- | manual/string.texi | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/manual/string.texi b/manual/string.texi index 872916b660..21941594b1 100644 --- a/manual/string.texi +++ b/manual/string.texi @@ -708,9 +708,9 @@ This function is similar to @code{wcpcpy} but copies always exactly If the length of @var{wfrom} is more then @var{size}, then @code{wcpncpy} copies just the first @var{size} wide characters and -returns a pointer to the wide character directly following the one which -was copied last. Note that in this case there is no null terminator -written into @var{wto}. +returns a pointer to the wide character directly following the last +non-null wide character which was copied last. Note that in this case +there is no null terminator written into @var{wto}. If the length of @var{wfrom} is less than @var{size}, then @code{wcpncpy} copies all of @var{wfrom}, followed by enough null characters to add up |