OSDN Git Service

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