OSDN Git Service

LDP: Update original to LDP v3.79
[linuxjm/LDP_man-pages.git] / original / man3 / wcsncmp.3
index 14a8fbf..bcf9b32 100644 (file)
@@ -1,9 +1,11 @@
 .\" Copyright (c) Bruno Haible <haible@clisp.cons.org>
 .\"
+.\" %%%LICENSE_START(GPLv2+_DOC_ONEPARA)
 .\" This is free documentation; you can redistribute it and/or
 .\" modify it under the terms of the GNU General Public License as
 .\" published by the Free Software Foundation; either version 2 of
 .\" the License, or (at your option) any later version.
+.\" %%%LICENSE_END
 .\"
 .\" References consulted:
 .\"   GNU glibc-2 source code and manual
@@ -11,7 +13,7 @@
 .\"   OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html
 .\"   ISO/IEC 9899:1999
 .\"
-.TH WCSNCMP 3  2011-09-28 "GNU" "Linux Programmer's Manual"
+.TH WCSNCMP 3  2013-11-25 "GNU" "Linux Programmer's Manual"
 .SH NAME
 wcsncmp \- compare two fixed-size wide-character strings
 .SH SYNOPSIS
@@ -26,25 +28,64 @@ The
 function is the wide-character equivalent of the
 .BR strncmp (3)
 function.
-It compares the wide-character string pointed to by \fIs1\fP and the
-wide-character string pointed to by \fIs2\fP, but at most \fIn\fP wide
+It compares the wide-character string pointed to by
+.I s1
+and the
+wide-character string pointed to by
+.IR s2 ,
+but at most
+.I n
+wide
 characters from each string.
 In each string, the comparison extends only up
 to the first occurrence of a null wide character (L\(aq\\0\(aq), if any.
-.SH "RETURN VALUE"
+.SH RETURN VALUE
 The
 .BR wcsncmp ()
 function returns zero if the wide-character strings at
-\fIs1\fP and \fIs2\fP, truncated to at most length \fIn\fP, are equal.
+.I s1
+and
+.IR s2 ,
+truncated to at most length
+.IR n ,
+are equal.
 It returns an integer greater than zero if at the first differing position
-\fIi\fP (\fIi\fP < \fIn\fP),
-the corresponding wide-character \fIs1[i]\fP is
-greater than \fIs2[i]\fP.
+.I i
+.RI ( i
+<
+.IR n ),
+the corresponding wide-character
+.I s1[i]
+is
+greater than
+.IR s2[i] .
 It returns an integer less than zero if at the first
-differing position \fIi\fP (\fIi\fP < \fIn\fP), the corresponding
-wide-character \fIs1[i]\fP is less than \fIs2[i]\fP.
-.SH "CONFORMING TO"
+differing position
+.I i
+.RI (i
+<
+.IR n ),
+the corresponding
+wide-character
+.I s1[i]
+is less than
+.IR s2[i] .
+.SH ATTRIBUTES
+.SS Multithreading (see pthreads(7))
+The
+.BR wcsncmp ()
+function is thread-safe.
+.SH CONFORMING TO
 C99.
-.SH "SEE ALSO"
+.SH SEE ALSO
 .BR strncmp (3),
 .BR wcsncasecmp (3)
+.SH COLOPHON
+This page is part of release 3.79 of the Linux
+.I man-pages
+project.
+A description of the project,
+information about reporting bugs,
+and the latest version of this page,
+can be found at
+\%http://www.kernel.org/doc/man\-pages/.