]> git.saurik.com Git - apple/libc.git/blob - locale/isalnum_l.3
Libc-498.tar.gz
[apple/libc.git] / locale / isalnum_l.3
1 .\" $NetBSD: iswalnum.3,v 1.5 2002/07/10 14:46:10 yamt Exp $
2 .\"
3 .\" Copyright (c) 1991 The Regents of the University of California.
4 .\" All rights reserved.
5 .\"
6 .\" This code is derived from software contributed to Berkeley by
7 .\" the American National Standards Committee X3, on Information
8 .\" Processing Systems.
9 .\"
10 .\" Redistribution and use in source and binary forms, with or without
11 .\" modification, are permitted provided that the following conditions
12 .\" are met:
13 .\" 1. Redistributions of source code must retain the above copyright
14 .\" notice, this list of conditions and the following disclaimer.
15 .\" 2. Redistributions in binary form must reproduce the above copyright
16 .\" notice, this list of conditions and the following disclaimer in the
17 .\" documentation and/or other materials provided with the distribution.
18 .\" 3. All advertising materials mentioning features or use of this software
19 .\" must display the following acknowledgement:
20 .\" This product includes software developed by the University of
21 .\" California, Berkeley and its contributors.
22 .\" 4. Neither the name of the University nor the names of its contributors
23 .\" may be used to endorse or promote products derived from this software
24 .\" without specific prior written permission.
25 .\"
26 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
27 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
30 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 .\" SUCH DAMAGE.
37 .\"
38 .\" @(#)isalnum.3 5.2 (Berkeley) 6/29/91
39 .\" $FreeBSD: src/lib/libc/locale/iswalnum.3,v 1.5 2002/11/29 17:35:09 ru Exp $
40 .\"
41 .Dd March 11, 2005
42 .Dt ISALNUM_L 3
43 .Os
44 .Sh NAME
45 .Nm isalnum_l ,
46 .Nm isalpha_l ,
47 .Nm isblank_l ,
48 .Nm iscntrl_l ,
49 .Nm isdigit_l ,
50 .Nm isgraph_l ,
51 .Nm ishexnumber_l ,
52 .Nm isideogram_l ,
53 .Nm islower_l ,
54 .Nm isnumber_l ,
55 .Nm isphonogram_l ,
56 .Nm isprint_l ,
57 .Nm ispunct_l ,
58 .Nm isrune_l ,
59 .Nm isspace_l ,
60 .Nm isspecial_l ,
61 .Nm isupper_l ,
62 .Nm isxdigit_l
63 .Nd character classification utilities
64 .Sh LIBRARY
65 .Lb libc
66 .Sh SYNOPSIS
67 .In wctype.h
68 .In xlocale.h
69 .\"
70 .Ft int
71 .Fo isalnum_l
72 .Fa "int c"
73 .Fa "locale_t loc"
74 .Fc
75 .Ft int
76 .Fo isalpha_l
77 .Fa "int c"
78 .Fa "locale_t loc"
79 .Fc
80 .Ft int
81 .Fo isblank_l
82 .Fa "int c"
83 .Fa "locale_t loc"
84 .Fc
85 .Ft int
86 .Fo iscntrl_l
87 .Fa "int c"
88 .Fa "locale_t loc"
89 .Fc
90 .Ft int
91 .Fo isdigit_l
92 .Fa "int c"
93 .Fa "locale_t loc"
94 .Fc
95 .Ft int
96 .Fo isgraph_l
97 .Fa "int c"
98 .Fa "locale_t loc"
99 .Fc
100 .Ft int
101 .Fo ishexnumber_l
102 .Fa "int c"
103 .Fa "locale_t loc"
104 .Fc
105 .Ft int
106 .Fo isideogram_l
107 .Fa "int c"
108 .Fa "locale_t loc"
109 .Fc
110 .Ft int
111 .Fo islower_l
112 .Fa "int c"
113 .Fa "locale_t loc"
114 .Fc
115 .Ft int
116 .Fo isnumber_l
117 .Fa "int c"
118 .Fa "locale_t loc"
119 .Fc
120 .Ft int
121 .Fo isphonogram_l
122 .Fa "int c"
123 .Fa "locale_t loc"
124 .Fc
125 .Ft int
126 .Fo isprint_l
127 .Fa "int c"
128 .Fa "locale_t loc"
129 .Fc
130 .Ft int
131 .Fo ispunct_l
132 .Fa "int c"
133 .Fa "locale_t loc"
134 .Fc
135 .Ft int
136 .Fo isrune_l
137 .Fa "int c"
138 .Fa "locale_t loc"
139 .Fc
140 .Ft int
141 .Fo isspace_l
142 .Fa "int c"
143 .Fa "locale_t loc"
144 .Fc
145 .Ft int
146 .Fo isspecial_l
147 .Fa "int c"
148 .Fa "locale_t loc"
149 .Fc
150 .Ft int
151 .Fo isupper_l
152 .Fa "int c"
153 .Fa "locale_t loc"
154 .Fc
155 .Ft int
156 .Fo isxdigit_l
157 .Fa "int c"
158 .Fa "locale_t loc"
159 .Fc
160 .Sh DESCRIPTION
161 These
162 functions are extended locale versions of the corresponding functions,
163 with the _l removed.
164 Also, see
165 .Xr xlocale 3 for more information about extended locales.
166 .Sh SEE ALSO
167 .Xr isalnum 3 ,
168 .Xr isalpha 3 ,
169 .Xr isblank 3 ,
170 .Xr iscntrl 3 ,
171 .Xr isdigit 3 ,
172 .Xr isgraph 3 ,
173 .Xr ishexnumber 3 ,
174 .Xr isideogram 3 ,
175 .Xr islower 3 ,
176 .Xr isnumber 3 ,
177 .Xr isphonogram 3 ,
178 .Xr isprint 3 ,
179 .Xr ispunct 3 ,
180 .Xr isrune 3 ,
181 .Xr isspace 3 ,
182 .Xr isspecial 3 ,
183 .Xr isupper 3 ,
184 .Xr isxdigit 3 ,
185 .Xr xlocale 3