wctype.h 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348
  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 __UCLIBC_HAS_WCHAR__
  23. #error Attempted to include wctype.h when uClibc built without wide char support.
  24. #endif
  25. #ifndef __need_iswxxx
  26. # define _WCTYPE_H 1
  27. /* We try to get wint_t from <stddef.h>, but not all GCC versions define it
  28. there. So define it ourselves if it remains undefined. */
  29. # define __need_wint_t
  30. # include <stddef.h>
  31. # ifndef _WINT_T
  32. /* Integral type unchanged by default argument promotions that can
  33. hold any value corresponding to members of the extended character
  34. set, as well as at least one value that does not correspond to any
  35. member of the extended character set. */
  36. # define _WINT_T
  37. typedef unsigned int wint_t;
  38. # else
  39. # ifdef __USE_ISOC99
  40. __USING_NAMESPACE_C99(wint_t)
  41. # endif
  42. __END_NAMESPACE_C99
  43. # endif
  44. /* Constant expression of type `wint_t' whose value does not correspond
  45. to any member of the extended character set. */
  46. # ifndef WEOF
  47. # define WEOF (0xffffffffu)
  48. # endif
  49. #endif
  50. #undef __need_iswxxx
  51. /* The following part is also used in the <wcsmbs.h> header when compiled
  52. in the Unix98 compatibility mode. */
  53. #ifndef __iswxxx_defined
  54. # define __iswxxx_defined 1
  55. __BEGIN_NAMESPACE_C99
  56. /* Scalar type that can hold values which represent locale-specific
  57. character classifications. */
  58. /* uClibc note: glibc uses - typedef unsigned long int wctype_t; */
  59. typedef unsigned int wctype_t;
  60. __END_NAMESPACE_C99
  61. # ifndef _ISwbit
  62. # define _ISwbit(bit) (1 << (bit))
  63. enum
  64. {
  65. __ISwupper = 0, /* UPPERCASE. */
  66. __ISwlower = 1, /* lowercase. */
  67. __ISwalpha = 2, /* Alphabetic. */
  68. __ISwdigit = 3, /* Numeric. */
  69. __ISwxdigit = 4, /* Hexadecimal numeric. */
  70. __ISwspace = 5, /* Whitespace. */
  71. __ISwprint = 6, /* Printing. */
  72. __ISwgraph = 7, /* Graphical. */
  73. __ISwblank = 8, /* Blank (usually SPC and TAB). */
  74. __ISwcntrl = 9, /* Control character. */
  75. __ISwpunct = 10, /* Punctuation. */
  76. __ISwalnum = 11, /* Alphanumeric. */
  77. _ISwupper = _ISwbit (__ISwupper), /* UPPERCASE. */
  78. _ISwlower = _ISwbit (__ISwlower), /* lowercase. */
  79. _ISwalpha = _ISwbit (__ISwalpha), /* Alphabetic. */
  80. _ISwdigit = _ISwbit (__ISwdigit), /* Numeric. */
  81. _ISwxdigit = _ISwbit (__ISwxdigit), /* Hexadecimal numeric. */
  82. _ISwspace = _ISwbit (__ISwspace), /* Whitespace. */
  83. _ISwprint = _ISwbit (__ISwprint), /* Printing. */
  84. _ISwgraph = _ISwbit (__ISwgraph), /* Graphical. */
  85. _ISwblank = _ISwbit (__ISwblank), /* Blank (usually SPC and TAB). */
  86. _ISwcntrl = _ISwbit (__ISwcntrl), /* Control character. */
  87. _ISwpunct = _ISwbit (__ISwpunct), /* Punctuation. */
  88. _ISwalnum = _ISwbit (__ISwalnum) /* Alphanumeric. */
  89. };
  90. # else
  91. # if defined(__UCLIBC_MJN3_ONLY__) && defined(L_iswctype)
  92. #warning remove _ISwbit already defined check?
  93. #error _ISwbit already defined!
  94. # endif
  95. # endif /* Not _ISwbit */
  96. __BEGIN_DECLS
  97. __BEGIN_NAMESPACE_C99
  98. /*
  99. * Wide-character classification functions: 7.15.2.1.
  100. */
  101. /* Test for any wide character for which `iswalpha' or `iswdigit' is
  102. true. */
  103. extern int iswalnum (wint_t __wc) __THROW;
  104. /* Test for any wide character for which `iswupper' or 'iswlower' is
  105. true, or any wide character that is one of a locale-specific set of
  106. wide-characters for which none of `iswcntrl', `iswdigit',
  107. `iswpunct', or `iswspace' is true. */
  108. extern int iswalpha (wint_t __wc) __THROW;
  109. /* Test for any control wide character. */
  110. extern int iswcntrl (wint_t __wc) __THROW;
  111. /* Test for any wide character that corresponds to a decimal-digit
  112. character. */
  113. extern int iswdigit (wint_t __wc) __THROW;
  114. /* Test for any wide character for which `iswprint' is true and
  115. `iswspace' is false. */
  116. extern int iswgraph (wint_t __wc) __THROW;
  117. /* Test for any wide character that corresponds to a lowercase letter
  118. or is one of a locale-specific set of wide characters for which
  119. none of `iswcntrl', `iswdigit', `iswpunct', or `iswspace' is true. */
  120. extern int iswlower (wint_t __wc) __THROW;
  121. /* Test for any printing wide character. */
  122. extern int iswprint (wint_t __wc) __THROW;
  123. /* Test for any printing wide character that is one of a
  124. locale-specific et of wide characters for which neither `iswspace'
  125. nor `iswalnum' is true. */
  126. extern int iswpunct (wint_t __wc) __THROW;
  127. /* Test for any wide character that corresponds to a locale-specific
  128. set of wide characters for which none of `iswalnum', `iswgraph', or
  129. `iswpunct' is true. */
  130. extern int iswspace (wint_t __wc) __THROW;
  131. /* Test for any wide character that corresponds to an uppercase letter
  132. or is one of a locale-specific set of wide character for which none
  133. of `iswcntrl', `iswdigit', `iswpunct', or `iswspace' is true. */
  134. extern int iswupper (wint_t __wc) __THROW;
  135. /* Test for any wide character that corresponds to a hexadecimal-digit
  136. character equivalent to that performed be the functions described
  137. in the previous subclause. */
  138. extern int iswxdigit (wint_t __wc) __THROW;
  139. /* Test for any wide character that corresponds to a standard blank
  140. wide character or a locale-specific set of wide characters for
  141. which `iswalnum' is false. */
  142. # ifdef __USE_ISOC99
  143. extern int iswblank (wint_t __wc) __THROW;
  144. # endif
  145. /*
  146. * Extensible wide-character classification functions: 7.15.2.2.
  147. */
  148. /* Construct value that describes a class of wide characters identified
  149. by the string argument PROPERTY. */
  150. extern wctype_t wctype (__const char *__property) __THROW;
  151. /* Determine whether the wide-character WC has the property described by
  152. DESC. */
  153. extern int iswctype (wint_t __wc, wctype_t __desc) __THROW;
  154. __END_NAMESPACE_C99
  155. /*
  156. * Wide-character case-mapping functions: 7.15.3.1.
  157. */
  158. __BEGIN_NAMESPACE_C99
  159. /* Scalar type that can hold values which represent locale-specific
  160. character mappings. */
  161. /* uClibc note: glibc uses - typedef __const __int32_t *wctrans_t; */
  162. typedef unsigned int wctrans_t;
  163. __END_NAMESPACE_C99
  164. #ifdef __USE_GNU
  165. __USING_NAMESPACE_C99(wctrans_t)
  166. #endif
  167. __BEGIN_NAMESPACE_C99
  168. /* Converts an uppercase letter to the corresponding lowercase letter. */
  169. extern wint_t towlower (wint_t __wc) __THROW;
  170. /* Converts an lowercase letter to the corresponding uppercase letter. */
  171. extern wint_t towupper (wint_t __wc) __THROW;
  172. __END_NAMESPACE_C99
  173. __END_DECLS
  174. #endif /* need iswxxx. */
  175. /* The remaining definitions and declarations must not appear in the
  176. <wcsmbs.h> header. */
  177. #ifdef _WCTYPE_H
  178. /*
  179. * Extensible wide-character mapping functions: 7.15.3.2.
  180. */
  181. __BEGIN_DECLS
  182. __BEGIN_NAMESPACE_C99
  183. /* Construct value that describes a mapping between wide characters
  184. identified by the string argument PROPERTY. */
  185. extern wctrans_t wctrans (__const char *__property) __THROW;
  186. /* Map the wide character WC using the mapping described by DESC. */
  187. extern wint_t towctrans (wint_t __wc, wctrans_t __desc) __THROW;
  188. __END_NAMESPACE_C99
  189. #if defined(__USE_GNU) && defined(__UCLIBC_HAS_XLOCALE__)
  190. /* Declare the interface to extended locale model. */
  191. # include <xlocale.h>
  192. /* Test for any wide character for which `iswalpha' or `iswdigit' is
  193. true. */
  194. extern int iswalnum_l (wint_t __wc, __locale_t __locale) __THROW;
  195. /* Test for any wide character for which `iswupper' or 'iswlower' is
  196. true, or any wide character that is one of a locale-specific set of
  197. wide-characters for which none of `iswcntrl', `iswdigit',
  198. `iswpunct', or `iswspace' is true. */
  199. extern int iswalpha_l (wint_t __wc, __locale_t __locale) __THROW;
  200. /* Test for any control wide character. */
  201. extern int iswcntrl_l (wint_t __wc, __locale_t __locale) __THROW;
  202. /* Test for any wide character that corresponds to a decimal-digit
  203. character. */
  204. extern int iswdigit_l (wint_t __wc, __locale_t __locale) __THROW;
  205. /* Test for any wide character for which `iswprint' is true and
  206. `iswspace' is false. */
  207. extern int iswgraph_l (wint_t __wc, __locale_t __locale) __THROW;
  208. /* Test for any wide character that corresponds to a lowercase letter
  209. or is one of a locale-specific set of wide characters for which
  210. none of `iswcntrl', `iswdigit', `iswpunct', or `iswspace' is true. */
  211. extern int iswlower_l (wint_t __wc, __locale_t __locale) __THROW;
  212. /* Test for any printing wide character. */
  213. extern int iswprint_l (wint_t __wc, __locale_t __locale) __THROW;
  214. /* Test for any printing wide character that is one of a
  215. locale-specific et of wide characters for which neither `iswspace'
  216. nor `iswalnum' is true. */
  217. extern int iswpunct_l (wint_t __wc, __locale_t __locale) __THROW;
  218. /* Test for any wide character that corresponds to a locale-specific
  219. set of wide characters for which none of `iswalnum', `iswgraph', or
  220. `iswpunct' is true. */
  221. extern int iswspace_l (wint_t __wc, __locale_t __locale) __THROW;
  222. /* Test for any wide character that corresponds to an uppercase letter
  223. or is one of a locale-specific set of wide character for which none
  224. of `iswcntrl', `iswdigit', `iswpunct', or `iswspace' is true. */
  225. extern int iswupper_l (wint_t __wc, __locale_t __locale) __THROW;
  226. /* Test for any wide character that corresponds to a hexadecimal-digit
  227. character equivalent to that performed be the functions described
  228. in the previous subclause. */
  229. extern int iswxdigit_l (wint_t __wc, __locale_t __locale) __THROW;
  230. /* Test for any wide character that corresponds to a standard blank
  231. wide character or a locale-specific set of wide characters for
  232. which `iswalnum' is false. */
  233. extern int iswblank_l (wint_t __wc, __locale_t __locale) __THROW;
  234. /* Construct value that describes a class of wide characters identified
  235. by the string argument PROPERTY. */
  236. extern wctype_t wctype_l (__const char *__property, __locale_t __locale)
  237. __THROW;
  238. /* Determine whether the wide-character WC has the property described by
  239. DESC. */
  240. extern int iswctype_l (wint_t __wc, wctype_t __desc, __locale_t __locale)
  241. __THROW;
  242. /*
  243. * Wide-character case-mapping functions.
  244. */
  245. /* Converts an uppercase letter to the corresponding lowercase letter. */
  246. extern wint_t towlower_l (wint_t __wc, __locale_t __locale) __THROW;
  247. /* Converts an lowercase letter to the corresponding uppercase letter. */
  248. extern wint_t towupper_l (wint_t __wc, __locale_t __locale) __THROW;
  249. /* Construct value that describes a mapping between wide characters
  250. identified by the string argument PROPERTY. */
  251. extern wctrans_t wctrans_l (__const char *__property, __locale_t __locale)
  252. __THROW;
  253. /* Map the wide character WC using the mapping described by DESC. */
  254. extern wint_t towctrans_l (wint_t __wc, wctrans_t __desc,
  255. __locale_t __locale) __THROW;
  256. extern int __iswalnum_l(wint_t __wc, __locale_t __locale) __THROW;
  257. extern int __iswalpha_l(wint_t __wc, __locale_t __locale) __THROW;
  258. extern int __iswblank_l(wint_t __wc, __locale_t __locale) __THROW;
  259. extern int __iswcntrl_l(wint_t __wc, __locale_t __locale) __THROW;
  260. extern int __iswdigit_l(wint_t __wc, __locale_t __locale) __THROW;
  261. extern int __iswgraph_l(wint_t __wc, __locale_t __locale) __THROW;
  262. extern int __iswlower_l(wint_t __wc, __locale_t __locale) __THROW;
  263. extern int __iswprint_l(wint_t __wc, __locale_t __locale) __THROW;
  264. extern int __iswpunct_l(wint_t __wc, __locale_t __locale) __THROW;
  265. extern int __iswspace_l(wint_t __wc, __locale_t __locale) __THROW;
  266. extern int __iswupper_l(wint_t __wc, __locale_t __locale) __THROW;
  267. extern int __iswxdigit_l(wint_t __wc, __locale_t __locale) __THROW;
  268. extern wint_t __towlower_l(wint_t __wc, __locale_t __locale) __THROW;
  269. extern wint_t __towupper_l(wint_t __wc, __locale_t __locale) __THROW;
  270. extern int __iswctype_l(wint_t __wc, wctype_t __desc, __locale_t __locale) __THROW;
  271. extern wctrans_t __wctrans_l(const char *__property, __locale_t __locale) __THROW;
  272. extern wint_t __towctrans_l(wint_t __wc, wctrans_t __desc, __locale_t __locale) __THROW;
  273. # endif /* Use GNU. */
  274. __END_DECLS
  275. #endif /* __WCTYPE_H defined. */
  276. #endif /* wctype.h */