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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* Copyright (C) 1996,97,98,99,2000,01,02 Free Software Foundation, Inc.
  2.    This file is part of the GNU C Library.
  3.    The GNU C Library is free software; you can redistribute it and/or
  4.    modify it under the terms of the GNU Lesser General Public
  5.    License as published by the Free Software Foundation; either
  6.    version 2.1 of the License, or (at your option) any later version.
  7.    The GNU C Library is distributed in the hope that it will be useful,
  8.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  9.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  10.    Lesser General Public License for more details.
  11.    You should have received a copy of the GNU Lesser General Public
  12.    License along with the GNU C Library; if not, write to the Free
  13.    Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  14.    02111-1307 USA.  */
  15. /*
  16.  * ISO C99 Standard: 7.25
  17.  * Wide character classification and mapping utilities  <wctype.h>
  18.  */
  19. #ifndef _WCTYPE_H
  20. #include <features.h>
  21. #include <bits/types.h>
  22. #ifndef __need_iswxxx
  23. # define _WCTYPE_H 1
  24. /* We try to get wint_t from <stddef.h>, but not all GCC versions define it
  25.    there.  So define it ourselves if it remains undefined.  */
  26. # define __need_wint_t
  27. # include <stddef.h>
  28. # ifndef _WINT_T
  29. /* Integral type unchanged by default argument promotions that can
  30.    hold any value corresponding to members of the extended character
  31.    set, as well as at least one value that does not correspond to any
  32.    member of the extended character set.  */
  33. #  define _WINT_T
  34. typedef unsigned int wint_t;
  35. # else
  36. #  ifdef __USE_ISOC99
  37. __USING_NAMESPACE_C99(wint_t)
  38. #  endif
  39. __END_NAMESPACE_C99
  40. # endif
  41. /* Constant expression of type `wint_t' whose value does not correspond
  42.    to any member of the extended character set.  */
  43. # ifndef WEOF
  44. #  define WEOF (0xffffffffu)
  45. # endif
  46. #endif
  47. #undef __need_iswxxx
  48. /* The following part is also used in the <wcsmbs.h> header when compiled
  49.    in the Unix98 compatibility mode.  */
  50. #ifndef __iswxxx_defined
  51. # define __iswxxx_defined 1
  52. __BEGIN_NAMESPACE_C99
  53. /* Scalar type that can hold values which represent locale-specific
  54.    character classifications.  */
  55. typedef unsigned long int wctype_t;
  56. __END_NAMESPACE_C99
  57. # ifndef _ISwbit
  58. /* The characteristics are stored always in network byte order (big
  59.    endian).  We define the bit value interpretations here dependent on the
  60.    machine's byte order.  */
  61. #  include <endian.h>
  62. #  if __BYTE_ORDER == __BIG_ENDIAN
  63. #   define _ISwbit(bit) (1 << (bit))
  64. #  else /* __BYTE_ORDER == __LITTLE_ENDIAN */
  65. #   define _ISwbit(bit)
  66. ((bit) < 8 ? (int) ((1UL << (bit)) << 24)       
  67.  : ((bit) < 16 ? (int) ((1UL << (bit)) << 8)       
  68.     : ((bit) < 24 ? (int) ((1UL << (bit)) >> 8)       
  69.        : (int) ((1UL << (bit)) >> 24))))
  70. #  endif
  71. enum
  72. {
  73.   __ISwupper = 0, /* UPPERCASE.  */
  74.   __ISwlower = 1, /* lowercase.  */
  75.   __ISwalpha = 2, /* Alphabetic.  */
  76.   __ISwdigit = 3, /* Numeric.  */
  77.   __ISwxdigit = 4, /* Hexadecimal numeric.  */
  78.   __ISwspace = 5, /* Whitespace.  */
  79.   __ISwprint = 6, /* Printing.  */
  80.   __ISwgraph = 7, /* Graphical.  */
  81.   __ISwblank = 8, /* Blank (usually SPC and TAB).  */
  82.   __ISwcntrl = 9, /* Control character.  */
  83.   __ISwpunct = 10, /* Punctuation.  */
  84.   __ISwalnum = 11, /* Alphanumeric.  */
  85.   _ISwupper = _ISwbit (__ISwupper), /* UPPERCASE.  */
  86.   _ISwlower = _ISwbit (__ISwlower), /* lowercase.  */
  87.   _ISwalpha = _ISwbit (__ISwalpha), /* Alphabetic.  */
  88.   _ISwdigit = _ISwbit (__ISwdigit), /* Numeric.  */
  89.   _ISwxdigit = _ISwbit (__ISwxdigit), /* Hexadecimal numeric.  */
  90.   _ISwspace = _ISwbit (__ISwspace), /* Whitespace.  */
  91.   _ISwprint = _ISwbit (__ISwprint), /* Printing.  */
  92.   _ISwgraph = _ISwbit (__ISwgraph), /* Graphical.  */
  93.   _ISwblank = _ISwbit (__ISwblank), /* Blank (usually SPC and TAB).  */
  94.   _ISwcntrl = _ISwbit (__ISwcntrl), /* Control character.  */
  95.   _ISwpunct = _ISwbit (__ISwpunct), /* Punctuation.  */
  96.   _ISwalnum = _ISwbit (__ISwalnum) /* Alphanumeric.  */
  97. };
  98. # endif /* Not _ISwbit  */
  99. __BEGIN_DECLS
  100. __BEGIN_NAMESPACE_C99
  101. /*
  102.  * Wide-character classification functions: 7.15.2.1.
  103.  */
  104. /* Test for any wide character for which `iswalpha' or `iswdigit' is
  105.    true.  */
  106. extern int iswalnum (wint_t __wc) __THROW;
  107. /* Test for any wide character for which `iswupper' or 'iswlower' is
  108.    true, or any wide character that is one of a locale-specific set of
  109.    wide-characters for which none of `iswcntrl', `iswdigit',
  110.    `iswpunct', or `iswspace' is true.  */
  111. extern int iswalpha (wint_t __wc) __THROW;
  112. /* Test for any control wide character.  */
  113. extern int iswcntrl (wint_t __wc) __THROW;
  114. /* Test for any wide character that corresponds to a decimal-digit
  115.    character.  */
  116. extern int iswdigit (wint_t __wc) __THROW;
  117. /* Test for any wide character for which `iswprint' is true and
  118.    `iswspace' is false.  */
  119. extern int iswgraph (wint_t __wc) __THROW;
  120. /* Test for any wide character that corresponds to a lowercase letter
  121.    or is one of a locale-specific set of wide characters for which
  122.    none of `iswcntrl', `iswdigit', `iswpunct', or `iswspace' is true.  */
  123. extern int iswlower (wint_t __wc) __THROW;
  124. /* Test for any printing wide character.  */
  125. extern int iswprint (wint_t __wc) __THROW;
  126. /* Test for any printing wide character that is one of a
  127.    locale-specific et of wide characters for which neither `iswspace'
  128.    nor `iswalnum' is true.  */
  129. extern int iswpunct (wint_t __wc) __THROW;
  130. /* Test for any wide character that corresponds to a locale-specific
  131.    set of wide characters for which none of `iswalnum', `iswgraph', or
  132.    `iswpunct' is true.  */
  133. extern int iswspace (wint_t __wc) __THROW;
  134. /* Test for any wide character that corresponds to an uppercase letter
  135.    or is one of a locale-specific set of wide character for which none
  136.    of `iswcntrl', `iswdigit', `iswpunct', or `iswspace' is true.  */
  137. extern int iswupper (wint_t __wc) __THROW;
  138. /* Test for any wide character that corresponds to a hexadecimal-digit
  139.    character equivalent to that performed be the functions described
  140.    in the previous subclause.  */
  141. extern int iswxdigit (wint_t __wc) __THROW;
  142. /* Test for any wide character that corresponds to a standard blank
  143.    wide character or a locale-specific set of wide characters for
  144.    which `iswalnum' is false.  */
  145. # ifdef __USE_ISOC99
  146. extern int iswblank (wint_t __wc) __THROW;
  147. # endif
  148. /*
  149.  * Extensible wide-character classification functions: 7.15.2.2.
  150.  */
  151. /* Construct value that describes a class of wide characters identified
  152.    by the string argument PROPERTY.  */
  153. extern wctype_t wctype (__const char *__property) __THROW;
  154. /* Determine whether the wide-character WC has the property described by
  155.    DESC.  */
  156. extern int iswctype (wint_t __wc, wctype_t __desc) __THROW;
  157. __END_NAMESPACE_C99
  158. /*
  159.  * Wide-character case-mapping functions: 7.15.3.1.
  160.  */
  161. __BEGIN_NAMESPACE_C99
  162. /* Scalar type that can hold values which represent locale-specific
  163.    character mappings.  */
  164. typedef __const __int32_t *wctrans_t;
  165. __END_NAMESPACE_C99
  166. #ifdef __USE_GNU
  167. __USING_NAMESPACE_C99(wctrans_t)
  168. #endif
  169. __BEGIN_NAMESPACE_C99
  170. /* Converts an uppercase letter to the corresponding lowercase letter.  */
  171. extern wint_t towlower (wint_t __wc) __THROW;
  172. /* Converts an lowercase letter to the corresponding uppercase letter.  */
  173. extern wint_t towupper (wint_t __wc) __THROW;
  174. __END_NAMESPACE_C99
  175. __END_DECLS
  176. #endif /* need iswxxx.  */
  177. /* The remaining definitions and declarations must not appear in the
  178.    <wcsmbs.h> header.  */
  179. #ifdef _WCTYPE_H
  180. /*
  181.  * Extensible wide-character mapping functions: 7.15.3.2.
  182.  */
  183. __BEGIN_DECLS
  184. __BEGIN_NAMESPACE_C99
  185. /* Construct value that describes a mapping between wide characters
  186.    identified by the string argument PROPERTY.  */
  187. extern wctrans_t wctrans (__const char *__property) __THROW;
  188. /* Map the wide character WC using the mapping described by DESC.  */
  189. extern wint_t towctrans (wint_t __wc, wctrans_t __desc) __THROW;
  190. __END_NAMESPACE_C99
  191. # ifdef __USE_GNU
  192. /* Declare the interface to extended locale model.  */
  193. #  include <xlocale.h>
  194. /* Test for any wide character for which `iswalpha' or `iswdigit' is
  195.    true.  */
  196. extern int iswalnum_l (wint_t __wc, __locale_t __locale) __THROW;
  197. /* Test for any wide character for which `iswupper' or 'iswlower' is
  198.    true, or any wide character that is one of a locale-specific set of
  199.    wide-characters for which none of `iswcntrl', `iswdigit',
  200.    `iswpunct', or `iswspace' is true.  */
  201. extern int iswalpha_l (wint_t __wc, __locale_t __locale) __THROW;
  202. /* Test for any control wide character.  */
  203. extern int iswcntrl_l (wint_t __wc, __locale_t __locale) __THROW;
  204. /* Test for any wide character that corresponds to a decimal-digit
  205.    character.  */
  206. extern int iswdigit_l (wint_t __wc, __locale_t __locale) __THROW;
  207. /* Test for any wide character for which `iswprint' is true and
  208.    `iswspace' is false.  */
  209. extern int iswgraph_l (wint_t __wc, __locale_t __locale) __THROW;
  210. /* Test for any wide character that corresponds to a lowercase letter
  211.    or is one of a locale-specific set of wide characters for which
  212.    none of `iswcntrl', `iswdigit', `iswpunct', or `iswspace' is true.  */
  213. extern int iswlower_l (wint_t __wc, __locale_t __locale) __THROW;
  214. /* Test for any printing wide character.  */
  215. extern int iswprint_l (wint_t __wc, __locale_t __locale) __THROW;
  216. /* Test for any printing wide character that is one of a
  217.    locale-specific et of wide characters for which neither `iswspace'
  218.    nor `iswalnum' is true.  */
  219. extern int iswpunct_l (wint_t __wc, __locale_t __locale) __THROW;
  220. /* Test for any wide character that corresponds to a locale-specific
  221.    set of wide characters for which none of `iswalnum', `iswgraph', or
  222.    `iswpunct' is true.  */
  223. extern int iswspace_l (wint_t __wc, __locale_t __locale) __THROW;
  224. /* Test for any wide character that corresponds to an uppercase letter
  225.    or is one of a locale-specific set of wide character for which none
  226.    of `iswcntrl', `iswdigit', `iswpunct', or `iswspace' is true.  */
  227. extern int iswupper_l (wint_t __wc, __locale_t __locale) __THROW;
  228. /* Test for any wide character that corresponds to a hexadecimal-digit
  229.    character equivalent to that performed be the functions described
  230.    in the previous subclause.  */
  231. extern int iswxdigit_l (wint_t __wc, __locale_t __locale) __THROW;
  232. /* Test for any wide character that corresponds to a standard blank
  233.    wide character or a locale-specific set of wide characters for
  234.    which `iswalnum' is false.  */
  235. extern int iswblank_l (wint_t __wc, __locale_t __locale) __THROW;
  236. /* Construct value that describes a class of wide characters identified
  237.    by the string argument PROPERTY.  */
  238. extern wctype_t wctype_l (__const char *__property, __locale_t __locale)
  239.      __THROW;
  240. /* Determine whether the wide-character WC has the property described by
  241.    DESC.  */
  242. extern int iswctype_l (wint_t __wc, wctype_t __desc, __locale_t __locale)
  243.      __THROW;
  244. /*
  245.  * Wide-character case-mapping functions.
  246.  */
  247. /* Converts an uppercase letter to the corresponding lowercase letter.  */
  248. extern wint_t towlower_l (wint_t __wc, __locale_t __locale) __THROW;
  249. /* Converts an lowercase letter to the corresponding uppercase letter.  */
  250. extern wint_t towupper_l (wint_t __wc, __locale_t __locale) __THROW;
  251. /* Construct value that describes a mapping between wide characters
  252.    identified by the string argument PROPERTY.  */
  253. extern wctrans_t wctrans_l (__const char *__property, __locale_t __locale)
  254.      __THROW;
  255. /* Map the wide character WC using the mapping described by DESC.  */
  256. extern wint_t towctrans_l (wint_t __wc, wctrans_t __desc,
  257.    __locale_t __locale) __THROW;
  258. # endif /* Use GNU.  */
  259. __END_DECLS
  260. #endif /* __WCTYPE_H defined.  */
  261. #endif /* wctype.h  */