]> git.saurik.com Git - apple/libc.git/blob - include/ctype.h
a8167ec4f6d35e3615fe05bd12087493e14aac0d
[apple/libc.git] / include / ctype.h
1 /*
2 * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
3 *
4 * @APPLE_LICENSE_HEADER_START@
5 *
6 * Copyright (c) 1999-2003 Apple Computer, Inc. All Rights Reserved.
7 *
8 * This file contains Original Code and/or Modifications of Original Code
9 * as defined in and that are subject to the Apple Public Source License
10 * Version 2.0 (the 'License'). You may not use this file except in
11 * compliance with the License. Please obtain a copy of the License at
12 * http://www.opensource.apple.com/apsl/ and read it before using this
13 * file.
14 *
15 * The Original Code and all software distributed under the License are
16 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
17 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
18 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
20 * Please see the License for the specific language governing rights and
21 * limitations under the License.
22 *
23 * @APPLE_LICENSE_HEADER_END@
24 */
25 /*
26 * Copyright (c) 1989, 1993
27 * The Regents of the University of California. All rights reserved.
28 * (c) UNIX System Laboratories, Inc.
29 * All or some portions of this file are derived from material licensed
30 * to the University of California by American Telephone and Telegraph
31 * Co. or Unix System Laboratories, Inc. and are reproduced herein with
32 * the permission of UNIX System Laboratories, Inc.
33 *
34 * This code is derived from software contributed to Berkeley by
35 * Paul Borman at Krystal Technologies.
36 *
37 * Redistribution and use in source and binary forms, with or without
38 * modification, are permitted provided that the following conditions
39 * are met:
40 * 1. Redistributions of source code must retain the above copyright
41 * notice, this list of conditions and the following disclaimer.
42 * 2. Redistributions in binary form must reproduce the above copyright
43 * notice, this list of conditions and the following disclaimer in the
44 * documentation and/or other materials provided with the distribution.
45 * 3. All advertising materials mentioning features or use of this software
46 * must display the following acknowledgement:
47 * This product includes software developed by the University of
48 * California, Berkeley and its contributors.
49 * 4. Neither the name of the University nor the names of its contributors
50 * may be used to endorse or promote products derived from this software
51 * without specific prior written permission.
52 *
53 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
54 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
55 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
56 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
57 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
58 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
59 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
60 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
61 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
62 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
63 * SUCH DAMAGE.
64 *
65 * @(#)ctype.h 8.4 (Berkeley) 1/21/94
66 */
67
68 #ifndef _CTYPE_H_
69 #define _CTYPE_H_
70
71 #include <runetype.h>
72
73 #define _CTYPE_A 0x00000100L /* Alpha */
74 #define _CTYPE_C 0x00000200L /* Control */
75 #define _CTYPE_D 0x00000400L /* Digit */
76 #define _CTYPE_G 0x00000800L /* Graph */
77 #define _CTYPE_L 0x00001000L /* Lower */
78 #define _CTYPE_P 0x00002000L /* Punct */
79 #define _CTYPE_S 0x00004000L /* Space */
80 #define _CTYPE_U 0x00008000L /* Upper */
81 #define _CTYPE_X 0x00010000L /* X digit */
82 #define _CTYPE_B 0x00020000L /* Blank */
83 #define _CTYPE_R 0x00040000L /* Print */
84 #define _CTYPE_I 0x00080000L /* Ideogram */
85 #define _CTYPE_T 0x00100000L /* Special */
86 #define _CTYPE_Q 0x00200000L /* Phonogram */
87 #define _CTYPE_SW0 0x20000000L /* 0 width character */
88 #define _CTYPE_SW1 0x40000000L /* 1 width character */
89 #define _CTYPE_SW2 0x80000000L /* 2 width character */
90 #define _CTYPE_SW3 0xc0000000L /* 3 width character */
91
92 /*
93 * Backward compatibility
94 */
95 #define _A _CTYPE_A /* Alpha */
96 #define _C _CTYPE_C /* Control */
97 #define _D _CTYPE_D /* Digit */
98 #define _G _CTYPE_G /* Graph */
99 #define _L _CTYPE_L /* Lower */
100 #define _P _CTYPE_P /* Punct */
101 #define _S _CTYPE_S /* Space */
102 #define _U _CTYPE_U /* Upper */
103 #define _X _CTYPE_X /* X digit */
104 #define _B _CTYPE_B /* Blank */
105 #define _R _CTYPE_R /* Print */
106 #define _I _CTYPE_I /* Ideogram */
107 #define _T _CTYPE_T /* Special */
108 #define _Q _CTYPE_Q /* Phonogram */
109 #define _SW0 _CTYPE_SW0 /* 0 width character */
110 #define _SW1 _CTYPE_SW1 /* 1 width character */
111 #define _SW2 _CTYPE_SW2 /* 2 width character */
112 #define _SW3 _CTYPE_SW3 /* 3 width character */
113
114 __BEGIN_DECLS
115 int isalnum(int);
116 int isalpha(int);
117 int iscntrl(int);
118 int isdigit(int);
119 int isgraph(int);
120 int islower(int);
121 int isprint(int);
122 int ispunct(int);
123 int isspace(int);
124 int isupper(int);
125 int isxdigit(int);
126 int tolower(int);
127 int toupper(int);
128
129 #if !defined(_ANSI_SOURCE) && !defined(_POSIX_SOURCE)
130 int digittoint(int);
131 int isascii(int);
132 int isblank(int);
133 int ishexnumber(int);
134 int isideogram(int);
135 int isnumber(int);
136 int isphonogram(int);
137 int isrune(int);
138 int isspecial(int);
139 int toascii(int);
140 #endif
141 __END_DECLS
142
143
144 #define isalnum(c) __istype((c), (_CTYPE_A|_CTYPE_D))
145 #define isalpha(c) __istype((c), _CTYPE_A)
146 #define iscntrl(c) __istype((c), _CTYPE_C)
147 #define isdigit(c) __isctype((c), _CTYPE_D) /* ANSI -- locale independent */
148 #define isgraph(c) __istype((c), _CTYPE_G)
149 #define islower(c) __istype((c), _CTYPE_L)
150 #define isprint(c) __istype((c), _CTYPE_R)
151 #define ispunct(c) __istype((c), _CTYPE_P)
152 #define isspace(c) __istype((c), _CTYPE_S)
153 #define isupper(c) __istype((c), _CTYPE_U)
154 #define isxdigit(c) __isctype((c), _CTYPE_X) /* ANSI -- locale independent */
155 #define tolower(c) __tolower(c)
156 #define toupper(c) __toupper(c)
157
158 #if !defined(_ANSI_SOURCE) && !defined(_POSIX_SOURCE)
159 #define digittoint(c) __maskrune((c), 0xFF)
160 #define isascii(c) ((c & ~0x7F) == 0)
161 #define isblank(c) __istype((c), _CTYPE_B)
162 #define ishexnumber(c) __istype((c), _CTYPE_X)
163 #define isideogram(c) __istype((c), _CTYPE_I)
164 #define isnumber(c) __istype((c), _CTYPE_D)
165 #define isphonogram(c) __istype((c), _CTYPE_Q)
166 #define isrune(c) __istype((c), 0xFFFFFF00L)
167 #define isspecial(c) __istype((c), _CTYPE_T)
168 #define toascii(c) ((c) & 0x7F)
169 #endif
170
171 /* See comments in <machine/ansi.h> about _BSD_RUNE_T_. */
172 __BEGIN_DECLS
173 unsigned long ___runetype(_BSD_CT_RUNE_T_);
174 _BSD_CT_RUNE_T_ ___tolower(_BSD_CT_RUNE_T_);
175 _BSD_CT_RUNE_T_ ___toupper(_BSD_CT_RUNE_T_);
176 __END_DECLS
177
178 /*
179 * _EXTERNALIZE_CTYPE_INLINES_ is defined in locale/nomacros.c to tell us
180 * to generate code for extern versions of all our inline functions.
181 */
182 #ifdef _EXTERNALIZE_CTYPE_INLINES_
183 #define _USE_CTYPE_INLINE_
184 #define static
185 #define __inline
186 #endif
187
188 /*
189 * Use inline functions if we are allowed to and the compiler supports them.
190 */
191 #if !defined(_DONT_USE_CTYPE_INLINE_) && \
192 (defined(_USE_CTYPE_INLINE_) || defined(__GNUC__) || defined(__cplusplus))
193
194 static __inline int
195 __maskrune(_BSD_CT_RUNE_T_ _c, unsigned long _f)
196 {
197 return ((_c < 0 || _c >= _CACHED_RUNES) ? ___runetype(_c) :
198 _CurrentRuneLocale->runetype[_c]) & _f;
199 }
200
201 static __inline int
202 __istype(_BSD_CT_RUNE_T_ c, unsigned long f)
203 {
204 return !!(__maskrune(c, f));
205 }
206
207 static __inline _BSD_CT_RUNE_T_
208 __isctype(_BSD_CT_RUNE_T_ _c, unsigned long _f)
209 {
210 return (_c < 0 || _c >= _CACHED_RUNES) ? 0 :
211 !!(_DefaultRuneLocale.runetype[_c] & _f);
212 }
213
214 static __inline _BSD_CT_RUNE_T_
215 __toupper(_BSD_CT_RUNE_T_ _c)
216 {
217 return (_c < 0 || _c >= _CACHED_RUNES) ? ___toupper(_c) :
218 _CurrentRuneLocale->mapupper[_c];
219 }
220
221 static __inline _BSD_CT_RUNE_T_
222 __tolower(_BSD_CT_RUNE_T_ _c)
223 {
224 return (_c < 0 || _c >= _CACHED_RUNES) ? ___tolower(_c) :
225 _CurrentRuneLocale->maplower[_c];
226 }
227
228 #else /* not using inlines */
229
230 __BEGIN_DECLS
231 int __maskrune(_BSD_CT_RUNE_T_, unsigned long);
232 int __istype (_BSD_CT_RUNE_T_, unsigned long);
233 int __isctype(_BSD_CT_RUNE_T_, unsigned long);
234 _BSD_CT_RUNE_T_ __toupper(_BSD_CT_RUNE_T_);
235 _BSD_CT_RUNE_T_ __tolower(_BSD_CT_RUNE_T_);
236 __END_DECLS
237 #endif /* using inlines */
238
239 #endif /* !_CTYPE_H_ */