diff options
author | Ondřej Bílka <neleai@seznam.cz> | 2013-08-30 18:09:30 +0200 |
---|---|---|
committer | Ondřej Bílka <neleai@seznam.cz> | 2013-08-30 18:10:31 +0200 |
commit | f24a6d086b96a65a73c68ecf349b03321cb03720 (patch) | |
tree | 823c4db1322b11c81ba5ce05d77adbf4afbdbbc8 /manual/string.texi | |
parent | 382466e04e347d3b3fa221897efb8f4cdc239105 (diff) | |
download | glibc-f24a6d086b96a65a73c68ecf349b03321cb03720.tar.gz glibc-f24a6d086b96a65a73c68ecf349b03321cb03720.tar.xz glibc-f24a6d086b96a65a73c68ecf349b03321cb03720.zip |
Fix then/than typos.
Diffstat (limited to 'manual/string.texi')
-rw-r--r-- | manual/string.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/manual/string.texi b/manual/string.texi index 246be84457..2a164a9523 100644 --- a/manual/string.texi +++ b/manual/string.texi @@ -682,7 +682,7 @@ The behavior of @code{wcpcpy} is undefined if the strings overlap. This function is similar to @code{stpcpy} but copies always exactly @var{size} characters into @var{to}. -If the length of @var{from} is more then @var{size}, then @code{stpncpy} +If the length of @var{from} is more than @var{size}, then @code{stpncpy} copies just the first @var{size} characters and returns a pointer to the character directly following the one which was copied last. Note that in this case there is no null terminator written into @var{to}. @@ -707,7 +707,7 @@ declared in @file{string.h}. This function is similar to @code{wcpcpy} but copies always exactly @var{wsize} characters into @var{wto}. -If the length of @var{wfrom} is more then @var{size}, then +If the length of @var{wfrom} is more than @var{size}, then @code{wcpncpy} copies just the first @var{size} wide characters and returns a pointer to the wide character directly following the last non-null wide character which was copied last. Note that in this case |