OSDN Git Service

065dd5a49ac2e5af04fa9a468e734ba266015572
[uclinux-h8/uClibc.git] / include / ctype.h
1 /* Copyright (C) 1991,92,93,95,96,97,98,99,2001,02
2         Free Software Foundation, Inc.
3    This file is part of the GNU C Library.
4
5    The GNU C Library is free software; you can redistribute it and/or
6    modify it under the terms of the GNU Lesser General Public
7    License as published by the Free Software Foundation; either
8    version 2.1 of the License, or (at your option) any later version.
9
10    The GNU C Library is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13    Lesser General Public License for more details.
14
15    You should have received a copy of the GNU Lesser General Public
16    License along with the GNU C Library; if not, write to the Free
17    Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18    02111-1307 USA.  */
19
20 /*
21  *      ISO C99 Standard 7.4: Character handling        <ctype.h>
22  */
23
24 #ifndef _CTYPE_H
25 #define _CTYPE_H        1
26
27 #include <features.h>
28 #include <bits/types.h>
29
30 #ifdef __UCLIBC_HAS_CTYPE_TABLES__
31
32 __BEGIN_DECLS
33
34 #ifndef _ISbit
35 /* These are all the characteristics of characters.
36    If there get to be more than 16 distinct characteristics,
37    __ctype_mask_t will need to be adjusted. */
38
39 # define _ISbit(bit)    (1 << (bit))
40
41 enum
42 {
43   _ISupper = _ISbit (0),        /* UPPERCASE.  */
44   _ISlower = _ISbit (1),        /* lowercase.  */
45   _ISalpha = _ISbit (2),        /* Alphabetic.  */
46   _ISdigit = _ISbit (3),        /* Numeric.  */
47   _ISxdigit = _ISbit (4),       /* Hexadecimal numeric.  */
48   _ISspace = _ISbit (5),        /* Whitespace.  */
49   _ISprint = _ISbit (6),        /* Printing.  */
50   _ISgraph = _ISbit (7),        /* Graphical.  */
51   _ISblank = _ISbit (8),        /* Blank (usually SPC and TAB).  */
52   _IScntrl = _ISbit (9),        /* Control character.  */
53   _ISpunct = _ISbit (10),       /* Punctuation.  */
54   _ISalnum = _ISbit (11)        /* Alphanumeric.  */
55 };
56 #else
57 #error _ISbit already defined!
58 #endif /* ! _ISbit  */
59
60 #include <bits/uClibc_touplow.h>
61
62 #ifdef __UCLIBC_HAS_CTYPE_SIGNED__
63 # define __UCLIBC_CTYPE_IN_TO_DOMAIN(c) (((unsigned int)((c) + 128)) < 384)
64
65 #else  /* __UCLIBC_HAS_CTYPE_SIGNED__ */
66 # define __UCLIBC_CTYPE_IN_TO_DOMAIN(c) (((unsigned int)(c)) < 256)
67
68 #endif /* __UCLIBC_HAS_CTYPE_SIGNED__ */
69
70 /* In the thread-specific locale model (see `uselocale' in <locale.h>)
71    we cannot use global variables for these as was done in the past.
72    Instead, the following accessor functions return the address of
73    each variable, which is local to the current thread if multithreaded.
74
75    These point into arrays of 384, so they can be indexed by any `unsigned
76    char' value [0,255]; by EOF (-1); or by any `signed char' value
77    [-128,-1).  ISO C requires that the ctype functions work for `unsigned
78    char' values and for EOF; we also support negative `signed char' values
79    for broken old programs.  The case conversion arrays are of `int's
80    rather than `unsigned char's because tolower (EOF) must be EOF, which
81    doesn't fit into an `unsigned char'.  But today more important is that
82    the arrays are also used for multi-byte character sets.  */
83
84 /* uClibc differences:
85  *
86  * When __UCLIBC_HAS_CTYPE_SIGNED is defined,
87  *
88  *    The upper and lower mapping arrays are type int16_t, so that
89  *    they may store all char values plus EOF.  The glibc reasoning
90  *    given above for these being type int is questionable, as the
91  *    ctype mapping functions map from the set of (unsigned) char
92  *    and EOF back into the set.  They have no awareness of multi-byte
93  *    or wide characters.
94  *
95  * Otherwise,
96  *
97  *    The ctype array is defined for -1..255.
98  *    The upper and lower mapping arrays are defined for 0..255.
99  *    The upper and lower mapping arrays are type unsigned char.
100  */
101
102 /* Pointers to the default C-locale data. */
103 extern const __ctype_mask_t *__C_ctype_b;
104 libc_hidden_proto(__C_ctype_b)
105 extern const __ctype_touplow_t *__C_ctype_toupper;
106 libc_hidden_proto(__C_ctype_toupper)
107 extern const __ctype_touplow_t *__C_ctype_tolower;
108 libc_hidden_proto(__C_ctype_tolower)
109
110 #ifdef __UCLIBC_HAS_XLOCALE__
111
112 extern __const __ctype_mask_t **__ctype_b_loc (void)
113      __attribute__ ((__const));
114 libc_hidden_proto(__ctype_b_loc)
115 extern __const __ctype_touplow_t **__ctype_tolower_loc (void)
116      __attribute__ ((__const));
117 libc_hidden_proto(__ctype_tolower_loc)
118 extern __const __ctype_touplow_t **__ctype_toupper_loc (void)
119      __attribute__ ((__const));
120 libc_hidden_proto(__ctype_toupper_loc)
121
122 #define __UCLIBC_CTYPE_B        (*__ctype_b_loc())
123 #define __UCLIBC_CTYPE_TOLOWER  (*__ctype_tolower_loc())
124 #define __UCLIBC_CTYPE_TOUPPER  (*__ctype_toupper_loc())
125
126 #else  /* __UCLIBC_HAS_XLOCALE__ */
127
128 /* Pointers to the current global locale data in use. */
129 extern const __ctype_mask_t *__ctype_b;
130 libc_hidden_proto(__ctype_b)
131 extern const __ctype_touplow_t *__ctype_toupper;
132 libc_hidden_proto(__ctype_toupper)
133 extern const __ctype_touplow_t *__ctype_tolower;
134 libc_hidden_proto(__ctype_tolower)
135
136 #define __UCLIBC_CTYPE_B        (__ctype_b)
137 #define __UCLIBC_CTYPE_TOLOWER  (__ctype_tolower)
138 #define __UCLIBC_CTYPE_TOUPPER  (__ctype_toupper)
139
140 #endif /* __UCLIBC_HAS_XLOCALE__ */
141
142 #define __isctype(c, type) \
143   ((__UCLIBC_CTYPE_B)[(int) (c)] & (__ctype_mask_t) type)
144
145 #define __isascii(c)    (((c) & ~0x7f) == 0)    /* If C is a 7 bit value.  */
146 #define __toascii(c)    ((c) & 0x7f)            /* Mask off high bits.  */
147
148 #if defined _LIBC && (defined IS_IN_libc || defined NOT_IN_libc)
149 /* isdigit() is really locale-invariant, so provide some small fast macros.
150  * These are uClibc-specific. */
151 #define __isdigit_char(C)    (((unsigned char)((C) - '0')) <= 9)
152 #define __isdigit_int(C)     (((unsigned int)((C) - '0')) <= 9)
153 #endif
154
155 #define __exctype(name) extern int name (int) __THROW
156
157 __BEGIN_NAMESPACE_STD
158
159 /* The following names are all functions:
160      int isCHARACTERISTIC(int c);
161    which return nonzero iff C has CHARACTERISTIC.
162    For the meaning of the characteristic names, see the `enum' above.  */
163 __exctype (isalnum);
164 __exctype (isalpha);
165 __exctype (iscntrl);
166 __exctype (isdigit);
167 __exctype (islower);
168 __exctype (isgraph);
169 __exctype (isprint);
170 __exctype (ispunct);
171 __exctype (isspace);
172 __exctype (isupper);
173 __exctype (isxdigit);
174
175
176 /* Return the lowercase version of C.  */
177 extern int tolower (int __c) __THROW;
178 libc_hidden_proto(tolower)
179
180 /* Return the uppercase version of C.  */
181 extern int toupper (int __c) __THROW;
182 libc_hidden_proto(toupper)
183
184 __END_NAMESPACE_STD
185
186
187 /* ISO C99 introduced one new function.  */
188 #ifdef  __USE_ISOC99
189 __BEGIN_NAMESPACE_C99
190
191 __exctype (isblank);
192
193 __END_NAMESPACE_C99
194 #endif
195
196 #ifdef __USE_GNU
197 /* Test C for a set of character classes according to MASK.  */
198 extern int isctype (int __c, int __mask) __THROW;
199 #endif
200
201 #if defined __USE_SVID || defined __USE_MISC || defined __USE_XOPEN
202
203 /* Return nonzero iff C is in the ASCII set
204    (i.e., is no more than 7 bits wide).  */
205 extern int isascii (int __c) __THROW;
206
207 /* Return the part of C that is in the ASCII set
208    (i.e., the low-order 7 bits of C).  */
209 extern int toascii (int __c) __THROW;
210
211 /* These are the same as `toupper' and `tolower' except that they do not
212    check the argument for being in the range of a `char'.  */
213 __exctype (_toupper);
214 __exctype (_tolower);
215 #endif /* Use SVID or use misc.  */
216
217 /* This code is needed for the optimized mapping functions.  */
218 #define __tobody(c, f, a, args) \
219   (__extension__                                                              \
220    ({ int __res;                                                              \
221       if (sizeof (c) > 1)                                                     \
222         {                                                                     \
223           if (__builtin_constant_p (c))                                       \
224             {                                                                 \
225               int __c = (c);                                                  \
226               __res = __UCLIBC_CTYPE_IN_TO_DOMAIN(__c) ? (a)[__c] : __c;      \
227             }                                                                 \
228           else                                                                \
229             __res = f args;                                                   \
230         }                                                                     \
231       else                                                                    \
232         __res = (a)[(int) (c)];                                               \
233       __res; }))
234
235 #if !defined __NO_CTYPE && !defined __cplusplus
236 # define isalnum(c)     __isctype((c), _ISalnum)
237 # define isalpha(c)     __isctype((c), _ISalpha)
238 # define iscntrl(c)     __isctype((c), _IScntrl)
239 # define isdigit(c)     __isctype((c), _ISdigit)
240 # define islower(c)     __isctype((c), _ISlower)
241 # define isgraph(c)     __isctype((c), _ISgraph)
242 # define isprint(c)     __isctype((c), _ISprint)
243 # define ispunct(c)     __isctype((c), _ISpunct)
244 # define isspace(c)     __isctype((c), _ISspace)
245 # define isupper(c)     __isctype((c), _ISupper)
246 # define isxdigit(c)    __isctype((c), _ISxdigit)
247
248 # ifdef __USE_ISOC99
249 #  define isblank(c)    __isctype((c), _ISblank)
250 # endif
251
252 # ifdef __USE_EXTERN_INLINES
253 __extern_inline int
254 __NTH (tolower (int __c))
255 {
256   return __UCLIBC_CTYPE_IN_TO_DOMAIN(__c) ? (__UCLIBC_CTYPE_TOLOWER)[__c] : __c;
257 }
258
259 __extern_inline int
260 __NTH (toupper (int __c))
261 {
262   return __UCLIBC_CTYPE_IN_TO_DOMAIN(__c) ? (__UCLIBC_CTYPE_TOUPPER)[__c] : __c;
263 }
264 # endif
265
266 # if __GNUC__ >= 2 && defined __OPTIMIZE__ && !defined __cplusplus
267 #  define tolower(c)    __tobody (c, tolower, __UCLIBC_CTYPE_TOLOWER, (c))
268 #  define toupper(c)    __tobody (c, toupper, __UCLIBC_CTYPE_TOUPPER, (c))
269 # endif /* Optimizing gcc */
270
271 # if defined __USE_SVID || defined __USE_MISC || defined __USE_XOPEN
272 #  define isascii(c)    __isascii (c)
273 #  define toascii(c)    __toascii (c)
274
275 #  define _tolower(c)   ((int) (__UCLIBC_CTYPE_TOLOWER)[(int) (c)])
276 #  define _toupper(c)   ((int) (__UCLIBC_CTYPE_TOUPPER)[(int) (c)])
277 # endif
278
279 #endif /* Not __NO_CTYPE.  */
280
281
282 #if defined(__USE_GNU) && defined(__UCLIBC_HAS_XLOCALE__)
283 /* The concept of one static locale per category is not very well
284    thought out.  Many applications will need to process its data using
285    information from several different locales.  Another application is
286    the implementation of the internationalization handling in the
287    upcoming ISO C++ standard library.  To support this another set of
288    the functions using locale data exist which have an additional
289    argument.
290
291    Attention: all these functions are *not* standardized in any form.
292    This is a proof-of-concept implementation.  */
293
294 /* Structure for reentrant locale using functions.  This is an
295    (almost) opaque type for the user level programs.  */
296 # include <xlocale.h>
297
298 /* These definitions are similar to the ones above but all functions
299    take as an argument a handle for the locale which shall be used.  */
300 #  define __isctype_l(c, type, locale) \
301   ((locale)->__ctype_b[(int) (c)] & (__ctype_mask_t) type)
302
303 # define __exctype_l(name)                                                    \
304   extern int name (int, __locale_t) __THROW
305
306 /* The following names are all functions:
307      int isCHARACTERISTIC(int c, locale_t *locale);
308    which return nonzero iff C has CHARACTERISTIC.
309    For the meaning of the characteristic names, see the `enum' above.  */
310 __exctype_l (isalnum_l);
311 __exctype_l (isalpha_l);
312 __exctype_l (iscntrl_l);
313 __exctype_l (isdigit_l);
314 __exctype_l (islower_l);
315 __exctype_l (isgraph_l);
316 __exctype_l (isprint_l);
317 __exctype_l (ispunct_l);
318 __exctype_l (isspace_l);
319 __exctype_l (isupper_l);
320 __exctype_l (isxdigit_l);
321
322 __exctype_l (isblank_l);
323
324
325 /* Return the lowercase version of C in locale L.  */
326 extern int __tolower_l (int __c, __locale_t __l) __THROW;
327 extern int tolower_l (int __c, __locale_t __l) __THROW;
328
329 /* Return the uppercase version of C.  */
330 extern int __toupper_l (int __c, __locale_t __l) __THROW;
331 extern int toupper_l (int __c, __locale_t __l) __THROW;
332
333 # if __GNUC__ >= 2 && defined __OPTIMIZE__ && !defined __cplusplus
334 #  define __tolower_l(c, locale) \
335   __tobody (c, __tolower_l, (locale)->__ctype_tolower, (c, locale))
336 #  define __toupper_l(c, locale) \
337   __tobody (c, __toupper_l, (locale)->__ctype_toupper, (c, locale))
338 #  define tolower_l(c, locale)  __tolower_l ((c), (locale))
339 #  define toupper_l(c, locale)  __toupper_l ((c), (locale))
340 # endif /* Optimizing gcc */
341
342
343 # ifndef __NO_CTYPE
344 #  define __isalnum_l(c,l)      __isctype_l((c), _ISalnum, (l))
345 #  define __isalpha_l(c,l)      __isctype_l((c), _ISalpha, (l))
346 #  define __iscntrl_l(c,l)      __isctype_l((c), _IScntrl, (l))
347 #  define __isdigit_l(c,l)      __isctype_l((c), _ISdigit, (l))
348 #  define __islower_l(c,l)      __isctype_l((c), _ISlower, (l))
349 #  define __isgraph_l(c,l)      __isctype_l((c), _ISgraph, (l))
350 #  define __isprint_l(c,l)      __isctype_l((c), _ISprint, (l))
351 #  define __ispunct_l(c,l)      __isctype_l((c), _ISpunct, (l))
352 #  define __isspace_l(c,l)      __isctype_l((c), _ISspace, (l))
353 #  define __isupper_l(c,l)      __isctype_l((c), _ISupper, (l))
354 #  define __isxdigit_l(c,l)     __isctype_l((c), _ISxdigit, (l))
355
356 #  define __isblank_l(c,l)      __isctype_l((c), _ISblank, (l))
357
358 #  if defined __USE_SVID || defined __USE_MISC || defined __USE_XOPEN
359 #   define __isascii_l(c,l)     ((l), __isascii (c))
360 #   define __toascii_l(c,l)     ((l), __toascii (c))
361 #  endif
362
363 #  define isalnum_l(c,l)        __isalnum_l ((c), (l))
364 #  define isalpha_l(c,l)        __isalpha_l ((c), (l))
365 #  define iscntrl_l(c,l)        __iscntrl_l ((c), (l))
366 #  define isdigit_l(c,l)        __isdigit_l ((c), (l))
367 #  define islower_l(c,l)        __islower_l ((c), (l))
368 #  define isgraph_l(c,l)        __isgraph_l ((c), (l))
369 #  define isprint_l(c,l)        __isprint_l ((c), (l))
370 #  define ispunct_l(c,l)        __ispunct_l ((c), (l))
371 #  define isspace_l(c,l)        __isspace_l ((c), (l))
372 #  define isupper_l(c,l)        __isupper_l ((c), (l))
373 #  define isxdigit_l(c,l)       __isxdigit_l ((c), (l))
374
375 #  define isblank_l(c,l)        __isblank_l ((c), (l))
376
377 #  if defined __USE_SVID || defined __USE_MISC || defined __USE_XOPEN
378 #   define isascii_l(c,l)       __isascii_l ((c), (l))
379 #   define toascii_l(c,l)       __toascii_l ((c), (l))
380 #  endif
381
382 # endif /* Not __NO_CTYPE.  */
383
384 #endif /* Use GNU.  */
385
386 __END_DECLS
387
388 #else  /* __UCLIBC_HAS_CTYPE_TABLES__ */
389
390 #include <bits/uClibc_ctype.h>
391
392 #endif
393
394 #endif /* ctype.h  */