]>
Commit | Line | Data |
---|---|---|
3d9156a7 A |
1 | /* |
2 | * Copyright (c) 1989, 1993 | |
3 | * The Regents of the University of California. All rights reserved. | |
4 | * (c) UNIX System Laboratories, Inc. | |
5 | * All or some portions of this file are derived from material licensed | |
6 | * to the University of California by American Telephone and Telegraph | |
7 | * Co. or Unix System Laboratories, Inc. and are reproduced herein with | |
8 | * the permission of UNIX System Laboratories, Inc. | |
9 | * | |
10 | * This code is derived from software contributed to Berkeley by | |
11 | * Paul Borman at Krystal Technologies. | |
12 | * | |
13 | * Redistribution and use in source and binary forms, with or without | |
14 | * modification, are permitted provided that the following conditions | |
15 | * are met: | |
16 | * 1. Redistributions of source code must retain the above copyright | |
17 | * notice, this list of conditions and the following disclaimer. | |
18 | * 2. Redistributions in binary form must reproduce the above copyright | |
19 | * notice, this list of conditions and the following disclaimer in the | |
20 | * documentation and/or other materials provided with the distribution. | |
21 | * 3. All advertising materials mentioning features or use of this software | |
22 | * must display the following acknowledgement: | |
23 | * This product includes software developed by the University of | |
24 | * California, Berkeley and its contributors. | |
25 | * 4. Neither the name of the University nor the names of its contributors | |
26 | * may be used to endorse or promote products derived from this software | |
27 | * without specific prior written permission. | |
28 | * | |
29 | * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | |
30 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | |
31 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | |
32 | * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | |
33 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | |
34 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | |
35 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | |
36 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | |
37 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | |
38 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | |
39 | * SUCH DAMAGE. | |
40 | */ | |
41 | ||
42 | #include <sys/cdefs.h> | |
43 | __FBSDID("$FreeBSD: src/lib/libc/locale/iswctype.c,v 1.6 2002/08/17 20:30:34 ache Exp $"); | |
44 | ||
45 | #include "xlocale_private.h" | |
46 | #include <wctype.h> | |
47 | ||
48 | #undef iswalnum_l | |
49 | int | |
50 | iswalnum_l(wc, l) | |
51 | wint_t wc; | |
52 | locale_t l; | |
53 | { | |
54 | return (__istype_l(wc, _CTYPE_A|_CTYPE_D, l)); | |
55 | } | |
56 | ||
57 | #undef iswalpha_l | |
58 | int | |
59 | iswalpha_l(wc, l) | |
60 | wint_t wc; | |
61 | locale_t l; | |
62 | { | |
63 | return (__istype_l(wc, _CTYPE_A, l)); | |
64 | } | |
65 | ||
66 | #undef iswblank_l | |
67 | int | |
68 | iswblank_l(wc, l) | |
69 | wint_t wc; | |
70 | locale_t l; | |
71 | { | |
72 | return (__istype_l(wc, _CTYPE_B, l)); | |
73 | } | |
74 | ||
75 | #undef iswcntrl_l | |
76 | int | |
77 | iswcntrl_l(wc, l) | |
78 | wint_t wc; | |
79 | locale_t l; | |
80 | { | |
81 | return (__istype_l(wc, _CTYPE_C, l)); | |
82 | } | |
83 | ||
84 | #undef iswdigit_l | |
85 | int | |
86 | iswdigit_l(wc, l) | |
87 | wint_t wc; | |
88 | locale_t l; | |
89 | { | |
90 | return (__istype_l(wc, _CTYPE_D, l)); | |
91 | } | |
92 | ||
93 | #undef iswgraph_l | |
94 | int | |
95 | iswgraph_l(wc, l) | |
96 | wint_t wc; | |
97 | locale_t l; | |
98 | { | |
99 | return (__istype_l(wc, _CTYPE_G, l)); | |
100 | } | |
101 | ||
102 | #undef iswhexnumber_l | |
103 | int | |
104 | iswhexnumber_l(wc, l) | |
105 | wint_t wc; | |
106 | locale_t l; | |
107 | { | |
108 | return (__istype_l(wc, _CTYPE_X, l)); | |
109 | } | |
110 | ||
111 | #undef iswideogram_l | |
112 | int | |
113 | iswideogram_l(wc, l) | |
114 | wint_t wc; | |
115 | locale_t l; | |
116 | { | |
117 | return (__istype_l(wc, _CTYPE_I, l)); | |
118 | } | |
119 | ||
120 | #undef iswlower_l | |
121 | int | |
122 | iswlower_l(wc, l) | |
123 | wint_t wc; | |
124 | locale_t l; | |
125 | { | |
126 | return (__istype_l(wc, _CTYPE_L, l)); | |
127 | } | |
128 | ||
129 | #undef iswnumber_l | |
130 | int | |
131 | iswnumber_l(wc, l) | |
132 | wint_t wc; | |
133 | locale_t l; | |
134 | { | |
135 | return (__istype_l(wc, _CTYPE_D, l)); | |
136 | } | |
137 | ||
138 | #undef iswphonogram_l | |
139 | int | |
140 | iswphonogram_l(wc, l) | |
141 | wint_t wc; | |
142 | locale_t l; | |
143 | { | |
144 | return (__istype_l(wc, _CTYPE_Q, l)); | |
145 | } | |
146 | ||
147 | #undef iswprint_l | |
148 | int | |
149 | iswprint_l(wc, l) | |
150 | wint_t wc; | |
151 | locale_t l; | |
152 | { | |
153 | return (__istype_l(wc, _CTYPE_R, l)); | |
154 | } | |
155 | ||
156 | #undef iswpunct_l | |
157 | int | |
158 | iswpunct_l(wc, l) | |
159 | wint_t wc; | |
160 | locale_t l; | |
161 | { | |
162 | return (__istype_l(wc, _CTYPE_P, l)); | |
163 | } | |
164 | ||
165 | #undef iswrune_l | |
166 | int | |
167 | iswrune_l(wc, l) | |
168 | wint_t wc; | |
169 | locale_t l; | |
170 | { | |
171 | return (__istype_l(wc, 0xFFFFFF00L, l)); | |
172 | } | |
173 | ||
174 | #undef iswspace_l | |
175 | int | |
176 | iswspace_l(wc, l) | |
177 | wint_t wc; | |
178 | locale_t l; | |
179 | { | |
180 | return (__istype_l(wc, _CTYPE_S, l)); | |
181 | } | |
182 | ||
183 | #undef iswspecial_l | |
184 | int | |
185 | iswspecial_l(wc, l) | |
186 | wint_t wc; | |
187 | locale_t l; | |
188 | { | |
189 | return (__istype_l(wc, _CTYPE_T, l)); | |
190 | } | |
191 | ||
192 | #undef iswupper_l | |
193 | int | |
194 | iswupper_l(wc, l) | |
195 | wint_t wc; | |
196 | locale_t l; | |
197 | { | |
198 | return (__istype_l(wc, _CTYPE_U, l)); | |
199 | } | |
200 | ||
201 | #undef iswxdigit_l | |
202 | int | |
203 | iswxdigit_l(wc, l) | |
204 | wint_t wc; | |
205 | locale_t l; | |
206 | { | |
207 | return (__istype_l(wc, _CTYPE_X, l)); | |
208 | } | |
209 | ||
210 | #undef towlower_l | |
211 | wint_t | |
212 | towlower_l(wc, l) | |
213 | wint_t wc; | |
214 | locale_t l; | |
215 | { | |
216 | return (__tolower_l(wc, l)); | |
217 | } | |
218 | ||
219 | #undef towupper_l | |
220 | wint_t | |
221 | towupper_l(wc, l) | |
222 | wint_t wc; | |
223 | locale_t l; | |
224 | { | |
225 | return (__toupper_l(wc, l)); | |
226 | } | |
227 |