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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* Copyright (C) 1995-2002, 2003, 2004 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.24
  17.  * Extended multibyte and wide character utilities <wchar.h>
  18.  */
  19. #ifndef _WCHAR_H
  20. #ifndef __need_mbstate_t
  21. # define _WCHAR_H 1
  22. # include <features.h>
  23. #endif
  24. #ifdef _WCHAR_H
  25. /* Get FILE definition.  */
  26. # define __need___FILE
  27. # ifdef __USE_UNIX98
  28. #  define __need_FILE
  29. # endif
  30. # include <stdio.h>
  31. /* Get va_list definition.  */
  32. # define __need___va_list
  33. # include <stdarg.h>
  34. /* Get size_t, wchar_t, wint_t and NULL from <stddef.h>.  */
  35. # define __need_size_t
  36. # define __need_wchar_t
  37. # define __need_NULL
  38. #endif
  39. #define __need_wint_t
  40. #include <stddef.h>
  41. #include <bits/wchar.h>
  42. /* We try to get wint_t from <stddef.h>, but not all GCC versions define it
  43.    there.  So define it ourselves if it remains undefined.  */
  44. #ifndef _WINT_T
  45. /* Integral type unchanged by default argument promotions that can
  46.    hold any value corresponding to members of the extended character
  47.    set, as well as at least one value that does not correspond to any
  48.    member of the extended character set.  */
  49. # define _WINT_T
  50. typedef unsigned int wint_t;
  51. #else
  52. /* Work around problems with the <stddef.h> file which doesn't put
  53.    wint_t in the std namespace.  */
  54. # if defined __cplusplus && defined _GLIBCPP_USE_NAMESPACES 
  55.      && defined __WINT_TYPE__
  56. __BEGIN_NAMESPACE_STD
  57. typedef __WINT_TYPE__ wint_t;
  58. __END_NAMESPACE_STD
  59. # endif
  60. #endif
  61. #ifndef __mbstate_t_defined
  62. # define __mbstate_t_defined 1
  63. /* Conversion state information.  */
  64. typedef struct
  65. {
  66.   int __count;
  67.   union
  68.   {
  69.     wint_t __wch;
  70.     char __wchb[4];
  71.   } __value; /* Value so far.  */
  72. } __mbstate_t;
  73. #endif
  74. #undef __need_mbstate_t
  75. /* The rest of the file is only used if used if __need_mbstate_t is not
  76.    defined.  */
  77. #ifdef _WCHAR_H
  78. __BEGIN_NAMESPACE_C99
  79. /* Public type.  */
  80. typedef __mbstate_t mbstate_t;
  81. __END_NAMESPACE_C99
  82. #ifdef __USE_GNU
  83. __USING_NAMESPACE_C99(mbstate_t)
  84. #endif
  85. #ifndef WCHAR_MIN
  86. /* These constants might also be defined in <inttypes.h>.  */
  87. # define WCHAR_MIN __WCHAR_MIN
  88. # define WCHAR_MAX __WCHAR_MAX
  89. #endif
  90. #ifndef WEOF
  91. # define WEOF (0xffffffffu)
  92. #endif
  93. /* For XPG4 compliance we have to define the stuff from <wctype.h> here
  94.    as well.  */
  95. #if defined __USE_XOPEN && !defined __USE_UNIX98
  96. # include <wctype.h>
  97. #endif
  98. __BEGIN_DECLS
  99. __BEGIN_NAMESPACE_STD
  100. /* This incomplete type is defined in <time.h> but needed here because
  101.    of `wcsftime'.  */
  102. struct tm;
  103. /* XXX We have to clean this up at some point.  Since tm is in the std
  104.    namespace but wcsftime is in __c99 the type wouldn't be found
  105.    without inserting it in the global namespace.  */
  106. __USING_NAMESPACE_STD(tm)
  107. __END_NAMESPACE_STD
  108. __BEGIN_NAMESPACE_C99
  109. /* Copy SRC to DEST.  */
  110. extern wchar_t *wcscpy (wchar_t *__restrict __dest,
  111. __const wchar_t *__restrict __src) __THROW;
  112. /* Copy no more than N wide-characters of SRC to DEST.  */
  113. extern wchar_t *wcsncpy (wchar_t *__restrict __dest,
  114.  __const wchar_t *__restrict __src, size_t __n)
  115.      __THROW;
  116. /* Append SRC onto DEST.  */
  117. extern wchar_t *wcscat (wchar_t *__restrict __dest,
  118. __const wchar_t *__restrict __src) __THROW;
  119. /* Append no more than N wide-characters of SRC onto DEST.  */
  120. extern wchar_t *wcsncat (wchar_t *__restrict __dest,
  121.  __const wchar_t *__restrict __src, size_t __n)
  122.      __THROW;
  123. /* Compare S1 and S2.  */
  124. extern int wcscmp (__const wchar_t *__s1, __const wchar_t *__s2)
  125.      __THROW __attribute_pure__;
  126. /* Compare N wide-characters of S1 and S2.  */
  127. extern int wcsncmp (__const wchar_t *__s1, __const wchar_t *__s2, size_t __n)
  128.      __THROW __attribute_pure__;
  129. __END_NAMESPACE_C99
  130. #ifdef __USE_GNU
  131. /* Compare S1 and S2, ignoring case.  */
  132. extern int wcscasecmp (__const wchar_t *__s1, __const wchar_t *__s2) __THROW;
  133. /* Compare no more than N chars of S1 and S2, ignoring case.  */
  134. extern int wcsncasecmp (__const wchar_t *__s1, __const wchar_t *__s2,
  135. size_t __n) __THROW;
  136. /* Similar to the two functions above but take the information from
  137.    the provided locale and not the global locale.  */
  138. # include <xlocale.h>
  139. extern int wcscasecmp_l (__const wchar_t *__s1, __const wchar_t *__s2,
  140.  __locale_t __loc) __THROW;
  141. extern int wcsncasecmp_l (__const wchar_t *__s1, __const wchar_t *__s2,
  142.   size_t __n, __locale_t __loc) __THROW;
  143. #endif
  144. __BEGIN_NAMESPACE_C99
  145. /* Compare S1 and S2, both interpreted as appropriate to the
  146.    LC_COLLATE category of the current locale.  */
  147. extern int wcscoll (__const wchar_t *__s1, __const wchar_t *__s2) __THROW;
  148. /* Transform S2 into array pointed to by S1 such that if wcscmp is
  149.    applied to two transformed strings the result is the as applying
  150.    `wcscoll' to the original strings.  */
  151. extern size_t wcsxfrm (wchar_t *__restrict __s1,
  152.        __const wchar_t *__restrict __s2, size_t __n) __THROW;
  153. __END_NAMESPACE_C99
  154. #ifdef __USE_GNU
  155. /* Similar to the two functions above but take the information from
  156.    the provided locale and not the global locale.  */
  157. /* Compare S1 and S2, both interpreted as appropriate to the
  158.    LC_COLLATE category of the given locale.  */
  159. extern int wcscoll_l (__const wchar_t *__s1, __const wchar_t *__s2,
  160.       __locale_t __loc) __THROW;
  161. /* Transform S2 into array pointed to by S1 such that if wcscmp is
  162.    applied to two transformed strings the result is the as applying
  163.    `wcscoll' to the original strings.  */
  164. extern size_t wcsxfrm_l (wchar_t *__s1, __const wchar_t *__s2,
  165.  size_t __n, __locale_t __loc) __THROW;
  166. /* Duplicate S, returning an identical malloc'd string.  */
  167. extern wchar_t *wcsdup (__const wchar_t *__s) __THROW __attribute_malloc__;
  168. #endif
  169. __BEGIN_NAMESPACE_C99
  170. /* Find the first occurrence of WC in WCS.  */
  171. extern wchar_t *wcschr (__const wchar_t *__wcs, wchar_t __wc)
  172.      __THROW __attribute_pure__;
  173. /* Find the last occurrence of WC in WCS.  */
  174. extern wchar_t *wcsrchr (__const wchar_t *__wcs, wchar_t __wc)
  175.      __THROW __attribute_pure__;
  176. __END_NAMESPACE_C99
  177. #ifdef __USE_GNU
  178. /* This function is similar to `wcschr'.  But it returns a pointer to
  179.    the closing NUL wide character in case C is not found in S.  */
  180. extern wchar_t *wcschrnul (__const wchar_t *__s, wchar_t __wc)
  181.      __THROW __attribute_pure__;
  182. #endif
  183. __BEGIN_NAMESPACE_C99
  184. /* Return the length of the initial segmet of WCS which
  185.    consists entirely of wide characters not in REJECT.  */
  186. extern size_t wcscspn (__const wchar_t *__wcs, __const wchar_t *__reject)
  187.      __THROW __attribute_pure__;
  188. /* Return the length of the initial segmet of WCS which
  189.    consists entirely of wide characters in  ACCEPT.  */
  190. extern size_t wcsspn (__const wchar_t *__wcs, __const wchar_t *__accept)
  191.      __THROW __attribute_pure__;
  192. /* Find the first occurrence in WCS of any character in ACCEPT.  */
  193. extern wchar_t *wcspbrk (__const wchar_t *__wcs, __const wchar_t *__accept)
  194.      __THROW __attribute_pure__;
  195. /* Find the first occurrence of NEEDLE in HAYSTACK.  */
  196. extern wchar_t *wcsstr (__const wchar_t *__haystack, __const wchar_t *__needle)
  197.      __THROW __attribute_pure__;
  198. /* Divide WCS into tokens separated by characters in DELIM.  */
  199. extern wchar_t *wcstok (wchar_t *__restrict __s,
  200. __const wchar_t *__restrict __delim,
  201. wchar_t **__restrict __ptr) __THROW;
  202. /* Return the number of wide characters in S.  */
  203. extern size_t wcslen (__const wchar_t *__s) __THROW __attribute_pure__;
  204. __END_NAMESPACE_C99
  205. #ifdef __USE_XOPEN
  206. /* Another name for `wcsstr' from XPG4.  */
  207. extern wchar_t *wcswcs (__const wchar_t *__haystack, __const wchar_t *__needle)
  208.      __THROW __attribute_pure__;
  209. #endif
  210. #ifdef __USE_GNU
  211. /* Return the number of wide characters in S, but at most MAXLEN.  */
  212. extern size_t wcsnlen (__const wchar_t *__s, size_t __maxlen)
  213.      __THROW __attribute_pure__;
  214. #endif
  215. __BEGIN_NAMESPACE_C99
  216. /* Search N wide characters of S for C.  */
  217. extern wchar_t *wmemchr (__const wchar_t *__s, wchar_t __c, size_t __n)
  218.      __THROW __attribute_pure__;
  219. /* Compare N wide characters of S1 and S2.  */
  220. extern int wmemcmp (__const wchar_t *__restrict __s1,
  221.     __const wchar_t *__restrict __s2, size_t __n)
  222.      __THROW __attribute_pure__;
  223. /* Copy N wide characters of SRC to DEST.  */
  224. extern wchar_t *wmemcpy (wchar_t *__restrict __s1,
  225.  __const wchar_t *__restrict __s2, size_t __n) __THROW;
  226. /* Copy N wide characters of SRC to DEST, guaranteeing
  227.    correct behavior for overlapping strings.  */
  228. extern wchar_t *wmemmove (wchar_t *__s1, __const wchar_t *__s2, size_t __n)
  229.      __THROW;
  230. /* Set N wide characters of S to C.  */
  231. extern wchar_t *wmemset (wchar_t *__s, wchar_t __c, size_t __n) __THROW;
  232. __END_NAMESPACE_C99
  233. #ifdef __USE_GNU
  234. /* Copy N wide characters of SRC to DEST and return pointer to following
  235.    wide character.  */
  236. extern wchar_t *wmempcpy (wchar_t *__restrict __s1,
  237.   __const wchar_t *__restrict __s2, size_t __n)
  238.      __THROW;
  239. #endif
  240. __BEGIN_NAMESPACE_C99
  241. /* Determine whether C constitutes a valid (one-byte) multibyte
  242.    character.  */
  243. extern wint_t btowc (int __c) __THROW;
  244. /* Determine whether C corresponds to a member of the extended
  245.    character set whose multibyte representation is a single byte.  */
  246. extern int wctob (wint_t __c) __THROW;
  247. /* Determine whether PS points to an object representing the initial
  248.    state.  */
  249. extern int mbsinit (__const mbstate_t *__ps) __THROW __attribute_pure__;
  250. /* Write wide character representation of multibyte character pointed
  251.    to by S to PWC.  */
  252. extern size_t mbrtowc (wchar_t *__restrict __pwc,
  253.        __const char *__restrict __s, size_t __n,
  254.        mbstate_t *__p) __THROW;
  255. /* Write multibyte representation of wide character WC to S.  */
  256. extern size_t wcrtomb (char *__restrict __s, wchar_t __wc,
  257.        mbstate_t *__restrict __ps) __THROW;
  258. /* Return number of bytes in multibyte character pointed to by S.  */
  259. extern size_t __mbrlen (__const char *__restrict __s, size_t __n,
  260. mbstate_t *__restrict __ps) __THROW;
  261. extern size_t mbrlen (__const char *__restrict __s, size_t __n,
  262.       mbstate_t *__restrict __ps) __THROW;
  263. __END_NAMESPACE_C99
  264. #ifdef __USE_EXTERN_INLINES
  265. /* Define inline function as optimization.  */
  266. extern __inline size_t
  267. __NTH (mbrlen (__const char *__restrict __s, size_t __n,
  268.        mbstate_t *__restrict __ps))
  269. { return (__ps != NULL
  270.   ? mbrtowc (NULL, __s, __n, __ps) : __mbrlen (__s, __n, NULL)); }
  271. #endif
  272. __BEGIN_NAMESPACE_C99
  273. /* Write wide character representation of multibyte character string
  274.    SRC to DST.  */
  275. extern size_t mbsrtowcs (wchar_t *__restrict __dst,
  276.  __const char **__restrict __src, size_t __len,
  277.  mbstate_t *__restrict __ps) __THROW;
  278. /* Write multibyte character representation of wide character string
  279.    SRC to DST.  */
  280. extern size_t wcsrtombs (char *__restrict __dst,
  281.  __const wchar_t **__restrict __src, size_t __len,
  282.  mbstate_t *__restrict __ps) __THROW;
  283. __END_NAMESPACE_C99
  284. #ifdef __USE_GNU
  285. /* Write wide character representation of at most NMC bytes of the
  286.    multibyte character string SRC to DST.  */
  287. extern size_t mbsnrtowcs (wchar_t *__restrict __dst,
  288.   __const char **__restrict __src, size_t __nmc,
  289.   size_t __len, mbstate_t *__restrict __ps) __THROW;
  290. /* Write multibyte character representation of at most NWC characters
  291.    from the wide character string SRC to DST.  */
  292. extern size_t wcsnrtombs (char *__restrict __dst,
  293.   __const wchar_t **__restrict __src,
  294.   size_t __nwc, size_t __len,
  295.   mbstate_t *__restrict __ps) __THROW;
  296. #endif /* use GNU */
  297. /* The following functions are extensions found in X/Open CAE.  */
  298. #ifdef __USE_XOPEN
  299. /* Determine number of column positions required for C.  */
  300. extern int wcwidth (wchar_t __c) __THROW;
  301. /* Determine number of column positions required for first N wide
  302.    characters (or fewer if S ends before this) in S.  */
  303. extern int wcswidth (__const wchar_t *__s, size_t __n) __THROW;
  304. #endif /* Use X/Open.  */
  305. __BEGIN_NAMESPACE_C99
  306. /* Convert initial portion of the wide string NPTR to `double'
  307.    representation.  */
  308. extern double wcstod (__const wchar_t *__restrict __nptr,
  309.       wchar_t **__restrict __endptr) __THROW;
  310. #ifdef __USE_ISOC99
  311. /* Likewise for `float' and `long double' sizes of floating-point numbers.  */
  312. extern float wcstof (__const wchar_t *__restrict __nptr,
  313.      wchar_t **__restrict __endptr) __THROW;
  314. extern long double wcstold (__const wchar_t *__restrict __nptr,
  315.     wchar_t **__restrict __endptr) __THROW;
  316. #endif /* C99 */
  317. /* Convert initial portion of wide string NPTR to `long int'
  318.    representation.  */
  319. extern long int wcstol (__const wchar_t *__restrict __nptr,
  320. wchar_t **__restrict __endptr, int __base) __THROW;
  321. /* Convert initial portion of wide string NPTR to `unsigned long int'
  322.    representation.  */
  323. extern unsigned long int wcstoul (__const wchar_t *__restrict __nptr,
  324.   wchar_t **__restrict __endptr, int __base)
  325.      __THROW;
  326. #if defined __USE_ISOC99 || (defined __GNUC__ && defined __USE_GNU)
  327. /* Convert initial portion of wide string NPTR to `long int'
  328.    representation.  */
  329. __extension__
  330. extern long long int wcstoll (__const wchar_t *__restrict __nptr,
  331.       wchar_t **__restrict __endptr, int __base)
  332.      __THROW;
  333. /* Convert initial portion of wide string NPTR to `unsigned long long int'
  334.    representation.  */
  335. __extension__
  336. extern unsigned long long int wcstoull (__const wchar_t *__restrict __nptr,
  337. wchar_t **__restrict __endptr,
  338. int __base) __THROW;
  339. #endif /* ISO C99 or GCC and GNU.  */
  340. __END_NAMESPACE_C99
  341. #if defined __GNUC__ && defined __USE_GNU
  342. /* Convert initial portion of wide string NPTR to `long int'
  343.    representation.  */
  344. __extension__
  345. extern long long int wcstoq (__const wchar_t *__restrict __nptr,
  346.      wchar_t **__restrict __endptr, int __base)
  347.      __THROW;
  348. /* Convert initial portion of wide string NPTR to `unsigned long long int'
  349.    representation.  */
  350. __extension__
  351. extern unsigned long long int wcstouq (__const wchar_t *__restrict __nptr,
  352.        wchar_t **__restrict __endptr,
  353.        int __base) __THROW;
  354. #endif /* GCC and use GNU.  */
  355. #ifdef __USE_GNU
  356. /* The concept of one static locale per category is not very well
  357.    thought out.  Many applications will need to process its data using
  358.    information from several different locales.  Another application is
  359.    the implementation of the internationalization handling in the
  360.    upcoming ISO C++ standard library.  To support this another set of
  361.    the functions using locale data exist which have an additional
  362.    argument.
  363.    Attention: all these functions are *not* standardized in any form.
  364.    This is a proof-of-concept implementation.  */
  365. /* Structure for reentrant locale using functions.  This is an
  366.    (almost) opaque type for the user level programs.  */
  367. # include <xlocale.h>
  368. /* Special versions of the functions above which take the locale to
  369.    use as an additional parameter.  */
  370. extern long int wcstol_l (__const wchar_t *__restrict __nptr,
  371.   wchar_t **__restrict __endptr, int __base,
  372.   __locale_t __loc) __THROW;
  373. extern unsigned long int wcstoul_l (__const wchar_t *__restrict __nptr,
  374.     wchar_t **__restrict __endptr,
  375.     int __base, __locale_t __loc) __THROW;
  376. __extension__
  377. extern long long int wcstoll_l (__const wchar_t *__restrict __nptr,
  378. wchar_t **__restrict __endptr,
  379. int __base, __locale_t __loc) __THROW;
  380. __extension__
  381. extern unsigned long long int wcstoull_l (__const wchar_t *__restrict __nptr,
  382.   wchar_t **__restrict __endptr,
  383.   int __base, __locale_t __loc)
  384.      __THROW;
  385. extern double wcstod_l (__const wchar_t *__restrict __nptr,
  386. wchar_t **__restrict __endptr, __locale_t __loc)
  387.      __THROW;
  388. extern float wcstof_l (__const wchar_t *__restrict __nptr,
  389.        wchar_t **__restrict __endptr, __locale_t __loc)
  390.      __THROW;
  391. extern long double wcstold_l (__const wchar_t *__restrict __nptr,
  392.       wchar_t **__restrict __endptr,
  393.       __locale_t __loc) __THROW;
  394. #endif /* GNU */
  395. /* The internal entry points for `wcstoX' take an extra flag argument
  396.    saying whether or not to parse locale-dependent number grouping.  */
  397. extern double __wcstod_internal (__const wchar_t *__restrict __nptr,
  398.  wchar_t **__restrict __endptr, int __group)
  399.      __THROW;
  400. extern float __wcstof_internal (__const wchar_t *__restrict __nptr,
  401. wchar_t **__restrict __endptr, int __group)
  402.      __THROW;
  403. extern long double __wcstold_internal (__const wchar_t *__restrict __nptr,
  404.        wchar_t **__restrict __endptr,
  405.        int __group) __THROW;
  406. #ifndef __wcstol_internal_defined
  407. extern long int __wcstol_internal (__const wchar_t *__restrict __nptr,
  408.    wchar_t **__restrict __endptr,
  409.    int __base, int __group) __THROW;
  410. # define __wcstol_internal_defined 1
  411. #endif
  412. #ifndef __wcstoul_internal_defined
  413. extern unsigned long int __wcstoul_internal (__const wchar_t *__restrict __npt,
  414.      wchar_t **__restrict __endptr,
  415.      int __base, int __group) __THROW;
  416. # define __wcstoul_internal_defined 1
  417. #endif
  418. #ifndef __wcstoll_internal_defined
  419. __extension__
  420. extern long long int __wcstoll_internal (__const wchar_t *__restrict __nptr,
  421.  wchar_t **__restrict __endptr,
  422.  int __base, int __group) __THROW;
  423. # define __wcstoll_internal_defined 1
  424. #endif
  425. #ifndef __wcstoull_internal_defined
  426. __extension__
  427. extern unsigned long long int __wcstoull_internal (__const wchar_t *
  428.    __restrict __nptr,
  429.    wchar_t **
  430.    __restrict __endptr,
  431.    int __base,
  432.    int __group) __THROW;
  433. # define __wcstoull_internal_defined 1
  434. #endif
  435. #if defined __OPTIMIZE__ && __GNUC__ >= 2
  436. /* Define inline functions which call the internal entry points.  */
  437. __BEGIN_NAMESPACE_C99
  438. extern __inline double
  439. __NTH (wcstod (__const wchar_t *__restrict __nptr,
  440.        wchar_t **__restrict __endptr))
  441. { return __wcstod_internal (__nptr, __endptr, 0); }
  442. extern __inline long int
  443. __NTH (wcstol (__const wchar_t *__restrict __nptr,
  444.        wchar_t **__restrict __endptr, int __base))
  445. { return __wcstol_internal (__nptr, __endptr, __base, 0); }
  446. extern __inline unsigned long int
  447. __NTH (wcstoul (__const wchar_t *__restrict __nptr,
  448. wchar_t **__restrict __endptr, int __base))
  449. { return __wcstoul_internal (__nptr, __endptr, __base, 0); }
  450. __END_NAMESPACE_C99
  451. # ifdef __USE_GNU
  452. extern __inline float
  453. __NTH (wcstof (__const wchar_t *__restrict __nptr,
  454.        wchar_t **__restrict __endptr))
  455. { return __wcstof_internal (__nptr, __endptr, 0); }
  456. extern __inline long double
  457. __NTH (wcstold (__const wchar_t *__restrict __nptr,
  458. wchar_t **__restrict __endptr))
  459. { return __wcstold_internal (__nptr, __endptr, 0); }
  460. __extension__
  461. extern __inline long long int
  462. __NTH (wcstoq (__const wchar_t *__restrict __nptr,
  463.        wchar_t **__restrict __endptr, int __base))
  464. { return __wcstoll_internal (__nptr, __endptr, __base, 0); }
  465. __extension__
  466. extern __inline unsigned long long int
  467. __NTH (wcstouq (__const wchar_t *__restrict __nptr,
  468. wchar_t **__restrict __endptr, int __base))
  469. { return __wcstoull_internal (__nptr, __endptr, __base, 0); }
  470. # endif /* Use GNU.  */
  471. #endif /* Optimizing GCC >=2.  */
  472. #ifdef __USE_GNU
  473. /* Copy SRC to DEST, returning the address of the terminating L'' in
  474.    DEST.  */
  475. extern wchar_t *wcpcpy (wchar_t *__dest, __const wchar_t *__src) __THROW;
  476. /* Copy no more than N characters of SRC to DEST, returning the address of
  477.    the last character written into DEST.  */
  478. extern wchar_t *wcpncpy (wchar_t *__dest, __const wchar_t *__src, size_t __n)
  479.      __THROW;
  480. #endif /* use GNU */
  481. /* Wide character I/O functions.  */
  482. #if defined __USE_ISOC99 || defined __USE_UNIX98
  483. __BEGIN_NAMESPACE_C99
  484. /* Select orientation for stream.  */
  485. extern int fwide (__FILE *__fp, int __mode) __THROW;
  486. /* Write formatted output to STREAM.
  487.    This function is a possible cancellation point and therefore not
  488.    marked with __THROW.  */
  489. extern int fwprintf (__FILE *__restrict __stream,
  490.      __const wchar_t *__restrict __format, ...)
  491.      /* __attribute__ ((__format__ (__wprintf__, 2, 3))) */;
  492. /* Write formatted output to stdout.
  493.    This function is a possible cancellation point and therefore not
  494.    marked with __THROW.  */
  495. extern int wprintf (__const wchar_t *__restrict __format, ...)
  496.      /* __attribute__ ((__format__ (__wprintf__, 1, 2))) */;
  497. /* Write formatted output of at most N characters to S.  */
  498. extern int swprintf (wchar_t *__restrict __s, size_t __n,
  499.      __const wchar_t *__restrict __format, ...)
  500.      __THROW /* __attribute__ ((__format__ (__wprintf__, 3, 4))) */;
  501. /* Write formatted output to S from argument list ARG.
  502.    This function is a possible cancellation point and therefore not
  503.    marked with __THROW.  */
  504. extern int vfwprintf (__FILE *__restrict __s,
  505.       __const wchar_t *__restrict __format,
  506.       __gnuc_va_list __arg)
  507.      /* __attribute__ ((__format__ (__wprintf__, 2, 0))) */;
  508. /* Write formatted output to stdout from argument list ARG.
  509.    This function is a possible cancellation point and therefore not
  510.    marked with __THROW.  */
  511. extern int vwprintf (__const wchar_t *__restrict __format,
  512.      __gnuc_va_list __arg)
  513.      /* __attribute__ ((__format__ (__wprintf__, 1, 0))) */;
  514. /* Write formatted output of at most N character to S from argument
  515.    list ARG.  */
  516. extern int vswprintf (wchar_t *__restrict __s, size_t __n,
  517.       __const wchar_t *__restrict __format,
  518.       __gnuc_va_list __arg)
  519.      __THROW /* __attribute__ ((__format__ (__wprintf__, 3, 0))) */;
  520. /* Read formatted input from STREAM.
  521.    This function is a possible cancellation point and therefore not
  522.    marked with __THROW.  */
  523. extern int fwscanf (__FILE *__restrict __stream,
  524.     __const wchar_t *__restrict __format, ...)
  525.      /* __attribute__ ((__format__ (__wscanf__, 2, 3))) */;
  526. /* Read formatted input from stdin.
  527.    This function is a possible cancellation point and therefore not
  528.    marked with __THROW.  */
  529. extern int wscanf (__const wchar_t *__restrict __format, ...)
  530.      /* __attribute__ ((__format__ (__wscanf__, 1, 2))) */;
  531. /* Read formatted input from S.  */
  532. extern int swscanf (__const wchar_t *__restrict __s,
  533.     __const wchar_t *__restrict __format, ...)
  534.      __THROW /* __attribute__ ((__format__ (__wscanf__, 2, 3))) */;
  535. __END_NAMESPACE_C99
  536. #endif /* Use ISO C99 and Unix98. */
  537. #ifdef __USE_ISOC99
  538. __BEGIN_NAMESPACE_C99
  539. /* Read formatted input from S into argument list ARG.
  540.    This function is a possible cancellation point and therefore not
  541.    marked with __THROW.  */
  542. extern int vfwscanf (__FILE *__restrict __s,
  543.      __const wchar_t *__restrict __format,
  544.      __gnuc_va_list __arg)
  545.      /* __attribute__ ((__format__ (__wscanf__, 2, 0))) */;
  546. /* Read formatted input from stdin into argument list ARG.
  547.    This function is a possible cancellation point and therefore not
  548.    marked with __THROW.  */
  549. extern int vwscanf (__const wchar_t *__restrict __format,
  550.     __gnuc_va_list __arg)
  551.      /* __attribute__ ((__format__ (__wscanf__, 1, 0))) */;
  552. /* Read formatted input from S into argument list ARG.  */
  553. extern int vswscanf (__const wchar_t *__restrict __s,
  554.      __const wchar_t *__restrict __format,
  555.      __gnuc_va_list __arg)
  556.      __THROW /* __attribute__ ((__format__ (__wscanf__, 2, 0))) */;
  557. __END_NAMESPACE_C99
  558. #endif /* Use ISO C99. */
  559. __BEGIN_NAMESPACE_C99
  560. /* Read a character from STREAM.
  561.    These functions are possible cancellation points and therefore not
  562.    marked with __THROW.  */
  563. extern wint_t fgetwc (__FILE *__stream);
  564. extern wint_t getwc (__FILE *__stream);
  565. /* Read a character from stdin.
  566.    This function is a possible cancellation point and therefore not
  567.    marked with __THROW.  */
  568. extern wint_t getwchar (void);
  569. /* Write a character to STREAM.
  570.    These functions are possible cancellation points and therefore not
  571.    marked with __THROW.  */
  572. extern wint_t fputwc (wchar_t __wc, __FILE *__stream);
  573. extern wint_t putwc (wchar_t __wc, __FILE *__stream);
  574. /* Write a character to stdout.
  575.    This function is a possible cancellation points and therefore not
  576.    marked with __THROW.  */
  577. extern wint_t putwchar (wchar_t __wc);
  578. /* Get a newline-terminated wide character string of finite length
  579.    from STREAM.
  580.    This function is a possible cancellation points and therefore not
  581.    marked with __THROW.  */
  582. extern wchar_t *fgetws (wchar_t *__restrict __ws, int __n,
  583. __FILE *__restrict __stream);
  584. /* Write a string to STREAM.
  585.    This function is a possible cancellation points and therefore not
  586.    marked with __THROW.  */
  587. extern int fputws (__const wchar_t *__restrict __ws,
  588.    __FILE *__restrict __stream);
  589. /* Push a character back onto the input buffer of STREAM.
  590.    This function is a possible cancellation points and therefore not
  591.    marked with __THROW.  */
  592. extern wint_t ungetwc (wint_t __wc, __FILE *__stream);
  593. __END_NAMESPACE_C99
  594. #ifdef __USE_GNU
  595. /* These are defined to be equivalent to the `char' functions defined
  596.    in POSIX.1:1996.
  597.    These functions are not part of POSIX and therefore no official
  598.    cancellation point.  But due to similarity with an POSIX interface
  599.    or due to the implementation they are cancellation points and
  600.    therefore not marked with __THROW.  */
  601. extern wint_t getwc_unlocked (__FILE *__stream);
  602. extern wint_t getwchar_unlocked (void);
  603. /* This is the wide character version of a GNU extension.
  604.    This function is not part of POSIX and therefore no official
  605.    cancellation point.  But due to similarity with an POSIX interface
  606.    or due to the implementation it is a cancellation point and
  607.    therefore not marked with __THROW.  */
  608. extern wint_t fgetwc_unlocked (__FILE *__stream);
  609. /* Faster version when locking is not necessary.
  610.    This function is not part of POSIX and therefore no official
  611.    cancellation point.  But due to similarity with an POSIX interface
  612.    or due to the implementation it is a cancellation point and
  613.    therefore not marked with __THROW.  */
  614. extern wint_t fputwc_unlocked (wchar_t __wc, __FILE *__stream);
  615. /* These are defined to be equivalent to the `char' functions defined
  616.    in POSIX.1:1996.
  617.    These functions are not part of POSIX and therefore no official
  618.    cancellation point.  But due to similarity with an POSIX interface
  619.    or due to the implementation they are cancellation points and
  620.    therefore not marked with __THROW.  */
  621. extern wint_t putwc_unlocked (wchar_t __wc, __FILE *__stream);
  622. extern wint_t putwchar_unlocked (wchar_t __wc);
  623. /* This function does the same as `fgetws' but does not lock the stream.
  624.    This function is not part of POSIX and therefore no official
  625.    cancellation point.  But due to similarity with an POSIX interface
  626.    or due to the implementation it is a cancellation point and
  627.    therefore not marked with __THROW.  */
  628. extern wchar_t *fgetws_unlocked (wchar_t *__restrict __ws, int __n,
  629.  __FILE *__restrict __stream);
  630. /* This function does the same as `fputws' but does not lock the stream.
  631.    This function is not part of POSIX and therefore no official
  632.    cancellation point.  But due to similarity with an POSIX interface
  633.    or due to the implementation it is a cancellation point and
  634.    therefore not marked with __THROW.  */
  635. extern int fputws_unlocked (__const wchar_t *__restrict __ws,
  636.     __FILE *__restrict __stream);
  637. #endif
  638. __BEGIN_NAMESPACE_C99
  639. /* Format TP into S according to FORMAT.
  640.    Write no more than MAXSIZE wide characters and return the number
  641.    of wide characters written, or 0 if it would exceed MAXSIZE.  */
  642. extern size_t wcsftime (wchar_t *__restrict __s, size_t __maxsize,
  643. __const wchar_t *__restrict __format,
  644. __const struct tm *__restrict __tp) __THROW;
  645. __END_NAMESPACE_C99
  646. # ifdef __USE_GNU
  647. # include <xlocale.h>
  648. /* Similar to `wcsftime' but takes the information from
  649.    the provided locale and not the global locale.  */
  650. extern size_t wcsftime_l (wchar_t *__restrict __s, size_t __maxsize,
  651.   __const wchar_t *__restrict __format,
  652.   __const struct tm *__restrict __tp,
  653.   __locale_t __loc) __THROW;
  654. # endif
  655. /* The X/Open standard demands that most of the functions defined in
  656.    the <wctype.h> header must also appear here.  This is probably
  657.    because some X/Open members wrote their implementation before the
  658.    ISO C standard was published and introduced the better solution.
  659.    We have to provide these definitions for compliance reasons but we
  660.    do this nonsense only if really necessary.  */
  661. #if defined __USE_UNIX98 && !defined __USE_GNU
  662. # define __need_iswxxx
  663. # include <wctype.h>
  664. #endif
  665. __END_DECLS
  666. #endif /* _WCHAR_H defined */
  667. #endif /* wchar.h  */