]> git.ipfire.org Git - thirdparty/man-pages.git/blame - man3/wcscmp.3
getent.1, intro.1, time.1, _exit.2, _syscall.2, accept.2, access.2, acct.2, adjtimex...
[thirdparty/man-pages.git] / man3 / wcscmp.3
CommitLineData
fea681da
MK
1.\" Copyright (c) Bruno Haible <haible@clisp.cons.org>
2.\"
3.\" This is free documentation; you can redistribute it and/or
4.\" modify it under the terms of the GNU General Public License as
5.\" published by the Free Software Foundation; either version 2 of
6.\" the License, or (at your option) any later version.
7.\"
8.\" References consulted:
9.\" GNU glibc-2 source code and manual
10.\" Dinkumware C library reference http://www.dinkumware.com/
008f1ecc 11.\" OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html
fea681da
MK
12.\" ISO/IEC 9899:1999
13.\"
14.TH WCSCMP 3 1999-07-25 "GNU" "Linux Programmer's Manual"
15.SH NAME
16wcscmp \- compare two wide-character strings
17.SH SYNOPSIS
18.nf
19.B #include <wchar.h>
20.sp
21.BI "int wcscmp(const wchar_t *" s1 ", const wchar_t *" s2 );
22.fi
23.SH DESCRIPTION
60a90ecd
MK
24The
25.BR wcscmp ()
26function is the wide-character equivalent
27of the
28.BR strcmp (3)
29function.
c13182ef 30It compares the wide-character string pointed to by \fIs1\fP and the
fea681da 31wide-character string pointed to by \fIs2\fP.
47297adb 32.SH RETURN VALUE
60a90ecd
MK
33The
34.BR wcscmp ()
35function returns zero if the wide-character strings at
c13182ef
MK
36\fIs1\fP and \fIs2\fP are equal.
37It returns an integer greater than zero if
fea681da 38at the first differing position \fIi\fP, the corresponding wide-character
c13182ef
MK
39\fIs1[i]\fP is greater than \fIs2[i]\fP.
40It returns an integer less than zero if
fea681da
MK
41at the first differing position \fIi\fP, the corresponding wide-character
42\fIs1[i]\fP is less than \fIs2[i]\fP.
47297adb 43.SH CONFORMING TO
68e1685c 44C99.
47297adb 45.SH SEE ALSO
fea681da
MK
46.BR strcmp (3),
47.BR wcscasecmp (3),
48.BR wmemcmp (3)