wchar.h 27 KB

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