ctype.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:11k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* Copyright (C) 1991,92,93,95,96,97,98,99,2001,2002,2004
  2.     Free Software Foundation, Inc.
  3.    This file is part of the GNU C Library.
  4.    The GNU C Library is free software; you can redistribute it and/or
  5.    modify it under the terms of the GNU Lesser General Public
  6.    License as published by the Free Software Foundation; either
  7.    version 2.1 of the License, or (at your option) any later version.
  8.    The GNU C Library is distributed in the hope that it will be useful,
  9.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  11.    Lesser General Public License for more details.
  12.    You should have received a copy of the GNU Lesser General Public
  13.    License along with the GNU C Library; if not, write to the Free
  14.    Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  15.    02111-1307 USA.  */
  16. /*
  17.  * ISO C99 Standard 7.4: Character handling <ctype.h>
  18.  */
  19. #ifndef _CTYPE_H
  20. #define _CTYPE_H 1
  21. #include <features.h>
  22. #include <bits/types.h>
  23. __BEGIN_DECLS
  24. #ifndef _ISbit
  25. /* These are all the characteristics of characters.
  26.    If there get to be more than 16 distinct characteristics,
  27.    many things must be changed that use `unsigned short int's.
  28.    The characteristics are stored always in network byte order (big
  29.    endian).  We define the bit value interpretations here dependent on the
  30.    machine's byte order.  */
  31. # include <endian.h>
  32. # if __BYTE_ORDER == __BIG_ENDIAN
  33. #  define _ISbit(bit) (1 << (bit))
  34. # else /* __BYTE_ORDER == __LITTLE_ENDIAN */
  35. #  define _ISbit(bit) ((bit) < 8 ? ((1 << (bit)) << 8) : ((1 << (bit)) >> 8))
  36. # endif
  37. enum
  38. {
  39.   _ISupper = _ISbit (0), /* UPPERCASE.  */
  40.   _ISlower = _ISbit (1), /* lowercase.  */
  41.   _ISalpha = _ISbit (2), /* Alphabetic.  */
  42.   _ISdigit = _ISbit (3), /* Numeric.  */
  43.   _ISxdigit = _ISbit (4), /* Hexadecimal numeric.  */
  44.   _ISspace = _ISbit (5), /* Whitespace.  */
  45.   _ISprint = _ISbit (6), /* Printing.  */
  46.   _ISgraph = _ISbit (7), /* Graphical.  */
  47.   _ISblank = _ISbit (8), /* Blank (usually SPC and TAB).  */
  48.   _IScntrl = _ISbit (9), /* Control character.  */
  49.   _ISpunct = _ISbit (10), /* Punctuation.  */
  50.   _ISalnum = _ISbit (11) /* Alphanumeric.  */
  51. };
  52. #endif /* ! _ISbit  */
  53. /* These are defined in ctype-info.c.
  54.    The declarations here must match those in localeinfo.h.
  55.    In the thread-specific locale model (see `uselocale' in <locale.h>)
  56.    we cannot use global variables for these as was done in the past.
  57.    Instead, the following accessor functions return the address of
  58.    each variable, which is local to the current thread if multithreaded.
  59.    These point into arrays of 384, so they can be indexed by any `unsigned
  60.    char' value [0,255]; by EOF (-1); or by any `signed char' value
  61.    [-128,-1).  ISO C requires that the ctype functions work for `unsigned
  62.    char' values and for EOF; we also support negative `signed char' values
  63.    for broken old programs.  The case conversion arrays are of `int's
  64.    rather than `unsigned char's because tolower (EOF) must be EOF, which
  65.    doesn't fit into an `unsigned char'.  But today more important is that
  66.    the arrays are also used for multi-byte character sets.  */
  67. extern __const unsigned short int **__ctype_b_loc (void)
  68.      __attribute__ ((__const));
  69. extern __const __int32_t **__ctype_tolower_loc (void)
  70.      __attribute__ ((__const));
  71. extern __const __int32_t **__ctype_toupper_loc (void)
  72.      __attribute__ ((__const));
  73. #define __isctype(c, type) 
  74.   ((*__ctype_b_loc ())[(int) (c)] & (unsigned short int) type)
  75. #define __isascii(c) (((c) & ~0x7f) == 0) /* If C is a 7 bit value.  */
  76. #define __toascii(c) ((c) & 0x7f) /* Mask off high bits.  */
  77. #define __exctype(name) extern int name (int) __THROW
  78. __BEGIN_NAMESPACE_STD
  79. /* The following names are all functions:
  80.      int isCHARACTERISTIC(int c);
  81.    which return nonzero iff C has CHARACTERISTIC.
  82.    For the meaning of the characteristic names, see the `enum' above.  */
  83. __exctype (isalnum);
  84. __exctype (isalpha);
  85. __exctype (iscntrl);
  86. __exctype (isdigit);
  87. __exctype (islower);
  88. __exctype (isgraph);
  89. __exctype (isprint);
  90. __exctype (ispunct);
  91. __exctype (isspace);
  92. __exctype (isupper);
  93. __exctype (isxdigit);
  94. /* Return the lowercase version of C.  */
  95. extern int tolower (int __c) __THROW;
  96. /* Return the uppercase version of C.  */
  97. extern int toupper (int __c) __THROW;
  98. __END_NAMESPACE_STD
  99. /* ISO C99 introduced one new function.  */
  100. #ifdef __USE_ISOC99
  101. __BEGIN_NAMESPACE_C99
  102. __exctype (isblank);
  103. __END_NAMESPACE_C99
  104. #endif
  105. #ifdef __USE_GNU
  106. /* Test C for a set of character classes according to MASK.  */
  107. extern int isctype (int __c, int __mask) __THROW;
  108. #endif
  109. #if defined __USE_SVID || defined __USE_MISC || defined __USE_XOPEN
  110. /* Return nonzero iff C is in the ASCII set
  111.    (i.e., is no more than 7 bits wide).  */
  112. extern int isascii (int __c) __THROW;
  113. /* Return the part of C that is in the ASCII set
  114.    (i.e., the low-order 7 bits of C).  */
  115. extern int toascii (int __c) __THROW;
  116. /* These are the same as `toupper' and `tolower' except that they do not
  117.    check the argument for being in the range of a `char'.  */
  118. __exctype (_toupper);
  119. __exctype (_tolower);
  120. #endif /* Use SVID or use misc.  */
  121. /* This code is needed for the optimized mapping functions.  */
  122. #define __tobody(c, f, a, args) 
  123.   (__extension__       
  124.    ({ int __res;       
  125.       if (sizeof (c) > 1)       
  126. {       
  127.   if (__builtin_constant_p (c))       
  128.     {       
  129.       int __c = (c);       
  130.       __res = __c < -128 || __c > 255 ? __c : (a)[__c];       
  131.     }       
  132.   else       
  133.     __res = f args;       
  134. }       
  135.       else       
  136. __res = (a)[(int) (c)];       
  137.       __res; }))
  138. #if !defined __NO_CTYPE && !defined __cplusplus
  139. # define isalnum(c) __isctype((c), _ISalnum)
  140. # define isalpha(c) __isctype((c), _ISalpha)
  141. # define iscntrl(c) __isctype((c), _IScntrl)
  142. # define isdigit(c) __isctype((c), _ISdigit)
  143. # define islower(c) __isctype((c), _ISlower)
  144. # define isgraph(c) __isctype((c), _ISgraph)
  145. # define isprint(c) __isctype((c), _ISprint)
  146. # define ispunct(c) __isctype((c), _ISpunct)
  147. # define isspace(c) __isctype((c), _ISspace)
  148. # define isupper(c) __isctype((c), _ISupper)
  149. # define isxdigit(c) __isctype((c), _ISxdigit)
  150. # ifdef __USE_ISOC99
  151. #  define isblank(c) __isctype((c), _ISblank)
  152. # endif
  153. # ifdef __USE_EXTERN_INLINES
  154. extern __inline int
  155. __NTH (tolower (int __c))
  156. {
  157.   return __c >= -128 && __c < 256 ? (*__ctype_tolower_loc ())[__c] : __c;
  158. }
  159. extern __inline int
  160. __NTH (toupper (int __c))
  161. {
  162.   return __c >= -128 && __c < 256 ? (*__ctype_toupper_loc ())[__c] : __c;
  163. }
  164. # endif
  165. # if __GNUC__ >= 2 && defined __OPTIMIZE__ && !defined __cplusplus
  166. #  define tolower(c) __tobody (c, tolower, *__ctype_tolower_loc (), (c))
  167. #  define toupper(c) __tobody (c, toupper, *__ctype_toupper_loc (), (c))
  168. # endif /* Optimizing gcc */
  169. # if defined __USE_SVID || defined __USE_MISC || defined __USE_XOPEN
  170. #  define isascii(c) __isascii (c)
  171. #  define toascii(c) __toascii (c)
  172. #  define _tolower(c) ((int) (*__ctype_tolower_loc ())[(int) (c)])
  173. #  define _toupper(c) ((int) (*__ctype_toupper_loc ())[(int) (c)])
  174. # endif
  175. #endif /* Not __NO_CTYPE.  */
  176. #ifdef __USE_GNU
  177. /* The concept of one static locale per category is not very well
  178.    thought out.  Many applications will need to process its data using
  179.    information from several different locales.  Another application is
  180.    the implementation of the internationalization handling in the
  181.    upcoming ISO C++ standard library.  To support this another set of
  182.    the functions using locale data exist which have an additional
  183.    argument.
  184.    Attention: all these functions are *not* standardized in any form.
  185.    This is a proof-of-concept implementation.  */
  186. /* Structure for reentrant locale using functions.  This is an
  187.    (almost) opaque type for the user level programs.  */
  188. # include <xlocale.h>
  189. /* These definitions are similar to the ones above but all functions
  190.    take as an argument a handle for the locale which shall be used.  */
  191. #  define __isctype_l(c, type, locale) 
  192.   ((locale)->__ctype_b[(int) (c)] & (unsigned short int) type)
  193. # define __exctype_l(name)        
  194.   extern int name (int, __locale_t) __THROW
  195. /* The following names are all functions:
  196.      int isCHARACTERISTIC(int c, locale_t *locale);
  197.    which return nonzero iff C has CHARACTERISTIC.
  198.    For the meaning of the characteristic names, see the `enum' above.  */
  199. __exctype_l (isalnum_l);
  200. __exctype_l (isalpha_l);
  201. __exctype_l (iscntrl_l);
  202. __exctype_l (isdigit_l);
  203. __exctype_l (islower_l);
  204. __exctype_l (isgraph_l);
  205. __exctype_l (isprint_l);
  206. __exctype_l (ispunct_l);
  207. __exctype_l (isspace_l);
  208. __exctype_l (isupper_l);
  209. __exctype_l (isxdigit_l);
  210. __exctype_l (isblank_l);
  211. /* Return the lowercase version of C in locale L.  */
  212. extern int __tolower_l (int __c, __locale_t __l) __THROW;
  213. extern int tolower_l (int __c, __locale_t __l) __THROW;
  214. /* Return the uppercase version of C.  */
  215. extern int __toupper_l (int __c, __locale_t __l) __THROW;
  216. extern int toupper_l (int __c, __locale_t __l) __THROW;
  217. # if __GNUC__ >= 2 && defined __OPTIMIZE__ && !defined __cplusplus
  218. #  define __tolower_l(c, locale) 
  219.   __tobody (c, __tolower_l, (locale)->__ctype_tolower, (c, locale))
  220. #  define __toupper_l(c, locale) 
  221.   __tobody (c, __toupper_l, (locale)->__ctype_toupper, (c, locale))
  222. #  define tolower_l(c, locale) __tolower_l ((c), (locale))
  223. #  define toupper_l(c, locale) __toupper_l ((c), (locale))
  224. # endif /* Optimizing gcc */
  225. # ifndef __NO_CTYPE
  226. #  define __isalnum_l(c,l) __isctype_l((c), _ISalnum, (l))
  227. #  define __isalpha_l(c,l) __isctype_l((c), _ISalpha, (l))
  228. #  define __iscntrl_l(c,l) __isctype_l((c), _IScntrl, (l))
  229. #  define __isdigit_l(c,l) __isctype_l((c), _ISdigit, (l))
  230. #  define __islower_l(c,l) __isctype_l((c), _ISlower, (l))
  231. #  define __isgraph_l(c,l) __isctype_l((c), _ISgraph, (l))
  232. #  define __isprint_l(c,l) __isctype_l((c), _ISprint, (l))
  233. #  define __ispunct_l(c,l) __isctype_l((c), _ISpunct, (l))
  234. #  define __isspace_l(c,l) __isctype_l((c), _ISspace, (l))
  235. #  define __isupper_l(c,l) __isctype_l((c), _ISupper, (l))
  236. #  define __isxdigit_l(c,l) __isctype_l((c), _ISxdigit, (l))
  237. #  define __isblank_l(c,l) __isctype_l((c), _ISblank, (l))
  238. #  if defined __USE_SVID || defined __USE_MISC || defined __USE_XOPEN
  239. #   define __isascii_l(c,l) ((l), __isascii (c))
  240. #   define __toascii_l(c,l) ((l), __toascii (c))
  241. #  endif
  242. #  define isalnum_l(c,l) __isalnum_l ((c), (l))
  243. #  define isalpha_l(c,l) __isalpha_l ((c), (l))
  244. #  define iscntrl_l(c,l) __iscntrl_l ((c), (l))
  245. #  define isdigit_l(c,l) __isdigit_l ((c), (l))
  246. #  define islower_l(c,l) __islower_l ((c), (l))
  247. #  define isgraph_l(c,l) __isgraph_l ((c), (l))
  248. #  define isprint_l(c,l) __isprint_l ((c), (l))
  249. #  define ispunct_l(c,l) __ispunct_l ((c), (l))
  250. #  define isspace_l(c,l) __isspace_l ((c), (l))
  251. #  define isupper_l(c,l) __isupper_l ((c), (l))
  252. #  define isxdigit_l(c,l) __isxdigit_l ((c), (l))
  253. #  define isblank_l(c,l) __isblank_l ((c), (l))
  254. #  if defined __USE_SVID || defined __USE_MISC || defined __USE_XOPEN
  255. #   define isascii_l(c,l) __isascii_l ((c), (l))
  256. #   define toascii_l(c,l) __toascii_l ((c), (l))
  257. #  endif
  258. # endif /* Not __NO_CTYPE.  */
  259. #endif /* Use GNU.  */
  260. __END_DECLS
  261. #endif /* ctype.h  */