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