]> git.ipfire.org Git - thirdparty/man-pages.git/blame - man3/strcoll.3
err.3: EXAMPLES: use EXIT_FAILURE rather than 1 as exit status
[thirdparty/man-pages.git] / man3 / strcoll.3
CommitLineData
fea681da
MK
1.\" Copyright 1993 David Metcalfe (david@prism.demon.co.uk)
2.\"
93015253 3.\" %%%LICENSE_START(VERBATIM)
fea681da
MK
4.\" Permission is granted to make and distribute verbatim copies of this
5.\" manual provided the copyright notice and this permission notice are
6.\" preserved on all copies.
7.\"
8.\" Permission is granted to copy and distribute modified versions of this
9.\" manual under the conditions for verbatim copying, provided that the
10.\" entire resulting derived work is distributed under the terms of a
11.\" permission notice identical to this one.
c13182ef 12.\"
fea681da
MK
13.\" Since the Linux kernel and libraries are constantly changing, this
14.\" manual page may be incorrect or out-of-date. The author(s) assume no
15.\" responsibility for errors or omissions, or for damages resulting from
16.\" the use of the information contained herein. The author(s) may not
17.\" have taken the same level of care in the production of this manual,
18.\" which is licensed free of charge, as they might when working
19.\" professionally.
c13182ef 20.\"
fea681da
MK
21.\" Formatted or processed versions of this manual, if unaccompanied by
22.\" the source, must acknowledge the copyright and authors of this work.
4b72fb64 23.\" %%%LICENSE_END
fea681da
MK
24.\"
25.\" References consulted:
26.\" Linux libc source code
27.\" Lewine's _POSIX Programmer's Guide_ (O'Reilly & Associates, 1991)
28.\" 386BSD man pages
29.\" Modified Sun Jul 25 10:40:44 1993 by Rik Faith (faith@cs.unc.edu)
4b8c67d9 30.TH STRCOLL 3 2017-09-15 "GNU" "Linux Programmer's Manual"
fea681da
MK
31.SH NAME
32strcoll \- compare two strings using the current locale
33.SH SYNOPSIS
34.nf
35.B #include <string.h>
68e4db0a 36.PP
fea681da
MK
37.BI "int strcoll(const char *" s1 ", const char *" s2 );
38.fi
39.SH DESCRIPTION
60a90ecd
MK
40The
41.BR strcoll ()
46d8df8e
MK
42function compares the two strings
43.I s1
44and
45.IR s2 .
1c44bd5b 46It returns an integer less than, equal to, or greater
46d8df8e
MK
47than zero if
48.I s1
49is found, respectively, to be less than,
50to match, or be greater than
51.IR s2 .
1c44bd5b 52The comparison is based on
c13182ef 53strings interpreted as appropriate for the program's current locale
46d8df8e
MK
54for category
55.BR LC_COLLATE .
3cdbcd0e 56(See
1450e83a 57.BR setlocale (3).)
47297adb 58.SH RETURN VALUE
60a90ecd
MK
59The
60.BR strcoll ()
61function returns an integer less than, equal to,
46d8df8e
MK
62or greater than zero if
63.I s1
64is found, respectively, to be less
65than, to match, or be greater than
66.IR s2 ,
67when both are interpreted
fea681da 68as appropriate for the current locale.
7aa848d5
MS
69.SH ATTRIBUTES
70For an explanation of the terms used in this section, see
71.BR attributes (7).
72.TS
73allbox;
74lb lb lb
75l l l.
76Interface Attribute Value
77T{
78.BR strcoll ()
79T} Thread safety MT-Safe locale
80.TE
847e0d88 81.sp 1
47297adb 82.SH CONFORMING TO
c516062d 83POSIX.1-2001, POSIX.1-2008, C89, C99, SVr4, 4.3BSD.
fea681da 84.SH NOTES
51700fd7 85In the
46d8df8e
MK
86.I "POSIX"
87or
945e9d50 88.I "C"
46d8df8e 89locales
60a90ecd
MK
90.BR strcoll ()
91is equivalent to
92.BR strcmp (3).
47297adb 93.SH SEE ALSO
fea681da
MK
94.BR bcmp (3),
95.BR memcmp (3),
96.BR setlocale (3),
97.BR strcasecmp (3),
98.BR strcmp (3),
3e5c319e 99.BR string (3),
fea681da 100.BR strxfrm (3)