diff options
author | Jakub Jelinek <jakub@redhat.com> | 2006-12-05 21:50:20 +0000 |
---|---|---|
committer | Jakub Jelinek <jakub@redhat.com> | 2006-12-05 21:50:20 +0000 |
commit | 7f65f3e3920a0dd6bb6a8774f46063371be4d029 (patch) | |
tree | fb89eb236014051f866ec94e56070f8120daf00c /manual | |
parent | 2027fcad9546d0724d9c0994394f2bf69d119613 (diff) | |
download | glibc-7f65f3e3920a0dd6bb6a8774f46063371be4d029.tar glibc-7f65f3e3920a0dd6bb6a8774f46063371be4d029.tar.gz glibc-7f65f3e3920a0dd6bb6a8774f46063371be4d029.tar.bz2 glibc-7f65f3e3920a0dd6bb6a8774f46063371be4d029.zip |
Updated to fedora-glibc-20061205T2141cvs/fedora-glibc-2_5_90-11
Diffstat (limited to 'manual')
-rw-r--r-- | manual/string.texi | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/manual/string.texi b/manual/string.texi index f582bad96d..2fe60395eb 100644 --- a/manual/string.texi +++ b/manual/string.texi @@ -1187,8 +1187,8 @@ regards these characters as parts of the alphabet they do match. @comment ISO @deftypefun int strncmp (const char *@var{s1}, const char *@var{s2}, size_t @var{size}) This function is the similar to @code{strcmp}, except that no more than -@var{size} wide characters are compared. In other words, if the two -strings are the same in their first @var{size} wide characters, the +@var{size} characters are compared. In other words, if the two +strings are the same in their first @var{size} characters, the return value is zero. @end deftypefun @@ -1966,11 +1966,6 @@ Note that ``character'' is here used in the sense of byte. In a string using a multibyte character encoding (abstract) character consisting of more than one byte are not treated as an entity. Each byte is treated separately. The function is not locale-dependent. - -Note that ``character'' is here used in the sense of byte. In a string -using a multibyte character encoding (abstract) character consisting of -more than one byte are not treated as an entity. Each byte is treated -separately. The function is not locale-dependent. @end deftypefun @comment wchar.h |