]> git.saurik.com Git - apple/libc.git/blame - string/wcscoll.3
Libc-583.tar.gz
[apple/libc.git] / string / wcscoll.3
CommitLineData
224c7076 1.\" Copyright (c) 1990, 1991, 1993
e9ce8d39
A
2.\" The Regents of the University of California. All rights reserved.
3.\"
224c7076
A
4.\" This code is derived from software contributed to Berkeley by
5.\" Chris Torek and the American National Standards Committee X3,
6.\" on Information Processing Systems.
7.\"
e9ce8d39
A
8.\" Redistribution and use in source and binary forms, with or without
9.\" modification, are permitted provided that the following conditions
10.\" are met:
11.\" 1. Redistributions of source code must retain the above copyright
12.\" notice, this list of conditions and the following disclaimer.
13.\" 2. Redistributions in binary form must reproduce the above copyright
14.\" notice, this list of conditions and the following disclaimer in the
15.\" documentation and/or other materials provided with the distribution.
16.\" 3. All advertising materials mentioning features or use of this software
17.\" must display the following acknowledgement:
18.\" This product includes software developed by the University of
19.\" California, Berkeley and its contributors.
20.\" 4. Neither the name of the University nor the names of its contributors
21.\" may be used to endorse or promote products derived from this software
22.\" without specific prior written permission.
23.\"
24.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34.\" SUCH DAMAGE.
35.\"
224c7076
A
36.\" @(#)strcoll.3 8.1 (Berkeley) 6/4/93
37.\" FreeBSD: src/lib/libc/string/strcoll.3,v 1.11 2001/10/01 16:09:00 ru Exp
38.\" $FreeBSD: src/lib/libc/string/wcscoll.3,v 1.2 2002/12/09 14:04:05 ru Exp $
e9ce8d39 39.\"
224c7076
A
40.Dd October 4, 2002
41.Dt WCSCOLL 3
e9ce8d39
A
42.Os
43.Sh NAME
224c7076
A
44.Nm wcscoll ,
45.Nm wcscoll_l
46.Nd compare wide strings according to current collation
e9ce8d39
A
47.Sh LIBRARY
48.Lb libc
49.Sh SYNOPSIS
224c7076
A
50.In wchar.h
51.Ft int
52.Fo wcscoll
53.Fa "const wchar_t *ws1"
54.Fa "const wchar_t *ws2"
55.Fc
56.In wchar.h
57.In xlocale.h
e9ce8d39 58.Ft int
224c7076
A
59.Fo wcscoll_l
60.Fa "const wchar_t *ws1"
61.Fa "const wchar_t *ws2"
62.Fa "locale_t loc"
63.Fc
e9ce8d39
A
64.Sh DESCRIPTION
65The
224c7076
A
66.Fn wcscoll
67function compares the null-terminated strings
68.Fa ws1
69and
70.Fa ws2 ,
71according to the current locale's collation order.
72In the
73.Dq Li C
74locale,
75.Fn wcscoll
76is equivalent to
77.Fn wcscmp .
5b2abdfb 78.Pp
224c7076
A
79Although the
80.Fn wcscoll
81function uses the current locale, the
82.Fn wcscoll_l
83function may be passed a locale directly. See
84.Xr xlocale 3
85for more information.
e9ce8d39 86.Sh RETURN VALUES
5b2abdfb 87The
224c7076 88.Fn wcscoll
5b2abdfb 89function
224c7076
A
90returns an integer greater than, equal to, or less than 0,
91if
92.Fa ws1
93is greater than, equal to, or less than
94.Fa ws2 .
95.Pp
96No return value is reserved to indicate errors;
97callers should set
98.Va errno
99to 0 before calling
100.Fn wcscoll .
101If it is non-zero upon return from
102.Fn wcscoll ,
103an error has occurred.
104.Sh ERRORS
105The
106.Fn wcscoll
107function will fail if:
108.Bl -tag -width Er
109.It Bq Er EILSEQ
110An invalid wide character code was specified.
111.It Bq Er ENOMEM
112Cannot allocate enough memory for temporary buffers.
5b2abdfb 113.El
e9ce8d39 114.Sh SEE ALSO
224c7076
A
115.Xr setlocale 3 ,
116.Xr strcoll 3 ,
117.Xr wcscmp 3 ,
118.Xr wcsxfrm 3 ,
119.Xr xlocale 3
120.Sh STANDARDS
5b2abdfb 121The
224c7076 122.Fn wcscoll
5b2abdfb 123function
224c7076
A
124conforms to
125.St -isoC-99 .
126.Sh BUGS
127The current implementation of
128.Fn wcscoll
129only works in single-byte
130.Dv LC_CTYPE
131locales, and falls back to using
132.Fn wcscmp
133in locales with extended character sets.