Use C99-compliant scanf under _GNU_SOURCE with modern compilers.
[glibc.git] / wcsmbs / wchar.h
blob20deca90bf26042fe0e709b4607dee1ce72aa594
1 /* Copyright (C) 1995-2019 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
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.
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.
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, see
16 <http://www.gnu.org/licenses/>. */
19 * ISO C99 Standard: 7.24
20 * Extended multibyte and wide character utilities <wchar.h>
23 #ifndef _WCHAR_H
24 #define _WCHAR_H 1
26 #define __GLIBC_INTERNAL_STARTING_HEADER_IMPLEMENTATION
27 #include <bits/libc-header-start.h>
29 /* Gather machine dependent type support. */
30 #include <bits/floatn.h>
32 #define __need_size_t
33 #define __need_wchar_t
34 #define __need_NULL
35 #include <stddef.h>
37 #define __need___va_list
38 #include <stdarg.h>
40 #include <bits/wchar.h>
41 #include <bits/types/wint_t.h>
42 #include <bits/types/mbstate_t.h>
43 #include <bits/types/__FILE.h>
45 #if defined __USE_UNIX98 || defined __USE_XOPEN2K
46 # include <bits/types/FILE.h>
47 #endif
48 #ifdef __USE_XOPEN2K8
49 # include <bits/types/locale_t.h>
50 #endif
52 /* Tell the caller that we provide correct C++ prototypes. */
53 #if defined __cplusplus && __GNUC_PREREQ (4, 4)
54 # define __CORRECT_ISO_CPP_WCHAR_H_PROTO
55 #endif
57 #ifndef WCHAR_MIN
58 /* These constants might also be defined in <inttypes.h>. */
59 # define WCHAR_MIN __WCHAR_MIN
60 # define WCHAR_MAX __WCHAR_MAX
61 #endif
63 #ifndef WEOF
64 # define WEOF (0xffffffffu)
65 #endif
67 /* All versions of XPG prior to the publication of ISO C99 required
68 the bulk of <wctype.h>'s declarations to appear in this header
69 (because <wctype.h> did not exist prior to C99). In POSIX.1-2001
70 those declarations were marked as XSI extensions; in -2008 they
71 were additionally marked as obsolescent. _GNU_SOURCE mode
72 anticipates the removal of these declarations in the next revision
73 of POSIX. */
74 #if (defined __USE_XOPEN && !defined __USE_GNU \
75 && !(defined __USE_XOPEN2K && !defined __USE_XOPEN2KXSI))
76 # include <bits/wctype-wchar.h>
77 #endif
79 __BEGIN_DECLS
81 /* This incomplete type is defined in <time.h> but needed here because
82 of `wcsftime'. */
83 struct tm;
86 /* Copy SRC to DEST. */
87 extern wchar_t *wcscpy (wchar_t *__restrict __dest,
88 const wchar_t *__restrict __src)
89 __THROW __nonnull ((1, 2));
91 /* Copy no more than N wide-characters of SRC to DEST. */
92 extern wchar_t *wcsncpy (wchar_t *__restrict __dest,
93 const wchar_t *__restrict __src, size_t __n)
94 __THROW __nonnull ((1, 2));
96 /* Append SRC onto DEST. */
97 extern wchar_t *wcscat (wchar_t *__restrict __dest,
98 const wchar_t *__restrict __src)
99 __THROW __nonnull ((1, 2));
100 /* Append no more than N wide-characters of SRC onto DEST. */
101 extern wchar_t *wcsncat (wchar_t *__restrict __dest,
102 const wchar_t *__restrict __src, size_t __n)
103 __THROW __nonnull ((1, 2));
105 /* Compare S1 and S2. */
106 extern int wcscmp (const wchar_t *__s1, const wchar_t *__s2)
107 __THROW __attribute_pure__ __nonnull ((1, 2));
108 /* Compare N wide-characters of S1 and S2. */
109 extern int wcsncmp (const wchar_t *__s1, const wchar_t *__s2, size_t __n)
110 __THROW __attribute_pure__ __nonnull ((1, 2));
112 #ifdef __USE_XOPEN2K8
113 /* Compare S1 and S2, ignoring case. */
114 extern int wcscasecmp (const wchar_t *__s1, const wchar_t *__s2) __THROW;
116 /* Compare no more than N chars of S1 and S2, ignoring case. */
117 extern int wcsncasecmp (const wchar_t *__s1, const wchar_t *__s2,
118 size_t __n) __THROW;
120 /* Similar to the two functions above but take the information from
121 the provided locale and not the global locale. */
122 extern int wcscasecmp_l (const wchar_t *__s1, const wchar_t *__s2,
123 locale_t __loc) __THROW;
125 extern int wcsncasecmp_l (const wchar_t *__s1, const wchar_t *__s2,
126 size_t __n, locale_t __loc) __THROW;
127 #endif
129 /* Compare S1 and S2, both interpreted as appropriate to the
130 LC_COLLATE category of the current locale. */
131 extern int wcscoll (const wchar_t *__s1, const wchar_t *__s2) __THROW;
132 /* Transform S2 into array pointed to by S1 such that if wcscmp is
133 applied to two transformed strings the result is the as applying
134 `wcscoll' to the original strings. */
135 extern size_t wcsxfrm (wchar_t *__restrict __s1,
136 const wchar_t *__restrict __s2, size_t __n) __THROW;
138 #ifdef __USE_XOPEN2K8
139 /* Similar to the two functions above but take the information from
140 the provided locale and not the global locale. */
142 /* Compare S1 and S2, both interpreted as appropriate to the
143 LC_COLLATE category of the given locale. */
144 extern int wcscoll_l (const wchar_t *__s1, const wchar_t *__s2,
145 locale_t __loc) __THROW;
147 /* Transform S2 into array pointed to by S1 such that if wcscmp is
148 applied to two transformed strings the result is the as applying
149 `wcscoll' to the original strings. */
150 extern size_t wcsxfrm_l (wchar_t *__s1, const wchar_t *__s2,
151 size_t __n, locale_t __loc) __THROW;
153 /* Duplicate S, returning an identical malloc'd string. */
154 extern wchar_t *wcsdup (const wchar_t *__s) __THROW __attribute_malloc__;
155 #endif
157 /* Find the first occurrence of WC in WCS. */
158 #ifdef __CORRECT_ISO_CPP_WCHAR_H_PROTO
159 extern "C++" wchar_t *wcschr (wchar_t *__wcs, wchar_t __wc)
160 __THROW __asm ("wcschr") __attribute_pure__;
161 extern "C++" const wchar_t *wcschr (const wchar_t *__wcs, wchar_t __wc)
162 __THROW __asm ("wcschr") __attribute_pure__;
163 #else
164 extern wchar_t *wcschr (const wchar_t *__wcs, wchar_t __wc)
165 __THROW __attribute_pure__;
166 #endif
167 /* Find the last occurrence of WC in WCS. */
168 #ifdef __CORRECT_ISO_CPP_WCHAR_H_PROTO
169 extern "C++" wchar_t *wcsrchr (wchar_t *__wcs, wchar_t __wc)
170 __THROW __asm ("wcsrchr") __attribute_pure__;
171 extern "C++" const wchar_t *wcsrchr (const wchar_t *__wcs, wchar_t __wc)
172 __THROW __asm ("wcsrchr") __attribute_pure__;
173 #else
174 extern wchar_t *wcsrchr (const wchar_t *__wcs, wchar_t __wc)
175 __THROW __attribute_pure__;
176 #endif
178 #ifdef __USE_GNU
179 /* This function is similar to `wcschr'. But it returns a pointer to
180 the closing NUL wide character in case C is not found in S. */
181 extern wchar_t *wcschrnul (const wchar_t *__s, wchar_t __wc)
182 __THROW __attribute_pure__;
183 #endif
185 /* Return the length of the initial segmet of WCS which
186 consists entirely of wide characters not in REJECT. */
187 extern size_t wcscspn (const wchar_t *__wcs, const wchar_t *__reject)
188 __THROW __attribute_pure__;
189 /* Return the length of the initial segmet of WCS which
190 consists entirely of wide characters in ACCEPT. */
191 extern size_t wcsspn (const wchar_t *__wcs, const wchar_t *__accept)
192 __THROW __attribute_pure__;
193 /* Find the first occurrence in WCS of any character in ACCEPT. */
194 #ifdef __CORRECT_ISO_CPP_WCHAR_H_PROTO
195 extern "C++" wchar_t *wcspbrk (wchar_t *__wcs, const wchar_t *__accept)
196 __THROW __asm ("wcspbrk") __attribute_pure__;
197 extern "C++" const wchar_t *wcspbrk (const wchar_t *__wcs,
198 const wchar_t *__accept)
199 __THROW __asm ("wcspbrk") __attribute_pure__;
200 #else
201 extern wchar_t *wcspbrk (const wchar_t *__wcs, const wchar_t *__accept)
202 __THROW __attribute_pure__;
203 #endif
204 /* Find the first occurrence of NEEDLE in HAYSTACK. */
205 #ifdef __CORRECT_ISO_CPP_WCHAR_H_PROTO
206 extern "C++" wchar_t *wcsstr (wchar_t *__haystack, const wchar_t *__needle)
207 __THROW __asm ("wcsstr") __attribute_pure__;
208 extern "C++" const wchar_t *wcsstr (const wchar_t *__haystack,
209 const wchar_t *__needle)
210 __THROW __asm ("wcsstr") __attribute_pure__;
211 #else
212 extern wchar_t *wcsstr (const wchar_t *__haystack, const wchar_t *__needle)
213 __THROW __attribute_pure__;
214 #endif
216 /* Divide WCS into tokens separated by characters in DELIM. */
217 extern wchar_t *wcstok (wchar_t *__restrict __s,
218 const wchar_t *__restrict __delim,
219 wchar_t **__restrict __ptr) __THROW;
221 /* Return the number of wide characters in S. */
222 extern size_t wcslen (const wchar_t *__s) __THROW __attribute_pure__;
224 #ifdef __USE_XOPEN
225 /* Another name for `wcsstr' from XPG4. */
226 # ifdef __CORRECT_ISO_CPP_WCHAR_H_PROTO
227 extern "C++" wchar_t *wcswcs (wchar_t *__haystack, const wchar_t *__needle)
228 __THROW __asm ("wcswcs") __attribute_pure__;
229 extern "C++" const wchar_t *wcswcs (const wchar_t *__haystack,
230 const wchar_t *__needle)
231 __THROW __asm ("wcswcs") __attribute_pure__;
232 # else
233 extern wchar_t *wcswcs (const wchar_t *__haystack, const wchar_t *__needle)
234 __THROW __attribute_pure__;
235 # endif
236 #endif
238 #ifdef __USE_XOPEN2K8
239 /* Return the number of wide characters in S, but at most MAXLEN. */
240 extern size_t wcsnlen (const wchar_t *__s, size_t __maxlen)
241 __THROW __attribute_pure__;
242 #endif
245 /* Search N wide characters of S for C. */
246 #ifdef __CORRECT_ISO_CPP_WCHAR_H_PROTO
247 extern "C++" wchar_t *wmemchr (wchar_t *__s, wchar_t __c, size_t __n)
248 __THROW __asm ("wmemchr") __attribute_pure__;
249 extern "C++" const wchar_t *wmemchr (const wchar_t *__s, wchar_t __c,
250 size_t __n)
251 __THROW __asm ("wmemchr") __attribute_pure__;
252 #else
253 extern wchar_t *wmemchr (const wchar_t *__s, wchar_t __c, size_t __n)
254 __THROW __attribute_pure__;
255 #endif
257 /* Compare N wide characters of S1 and S2. */
258 extern int wmemcmp (const wchar_t *__s1, const wchar_t *__s2, size_t __n)
259 __THROW __attribute_pure__;
261 /* Copy N wide characters of SRC to DEST. */
262 extern wchar_t *wmemcpy (wchar_t *__restrict __s1,
263 const wchar_t *__restrict __s2, size_t __n) __THROW;
265 /* Copy N wide characters of SRC to DEST, guaranteeing
266 correct behavior for overlapping strings. */
267 extern wchar_t *wmemmove (wchar_t *__s1, const wchar_t *__s2, size_t __n)
268 __THROW;
270 /* Set N wide characters of S to C. */
271 extern wchar_t *wmemset (wchar_t *__s, wchar_t __c, size_t __n) __THROW;
273 #ifdef __USE_GNU
274 /* Copy N wide characters of SRC to DEST and return pointer to following
275 wide character. */
276 extern wchar_t *wmempcpy (wchar_t *__restrict __s1,
277 const wchar_t *__restrict __s2, size_t __n)
278 __THROW;
279 #endif
282 /* Determine whether C constitutes a valid (one-byte) multibyte
283 character. */
284 extern wint_t btowc (int __c) __THROW;
286 /* Determine whether C corresponds to a member of the extended
287 character set whose multibyte representation is a single byte. */
288 extern int wctob (wint_t __c) __THROW;
290 /* Determine whether PS points to an object representing the initial
291 state. */
292 extern int mbsinit (const mbstate_t *__ps) __THROW __attribute_pure__;
294 /* Write wide character representation of multibyte character pointed
295 to by S to PWC. */
296 extern size_t mbrtowc (wchar_t *__restrict __pwc,
297 const char *__restrict __s, size_t __n,
298 mbstate_t *__restrict __p) __THROW;
300 /* Write multibyte representation of wide character WC to S. */
301 extern size_t wcrtomb (char *__restrict __s, wchar_t __wc,
302 mbstate_t *__restrict __ps) __THROW;
304 /* Return number of bytes in multibyte character pointed to by S. */
305 extern size_t __mbrlen (const char *__restrict __s, size_t __n,
306 mbstate_t *__restrict __ps) __THROW;
307 extern size_t mbrlen (const char *__restrict __s, size_t __n,
308 mbstate_t *__restrict __ps) __THROW;
310 #ifdef __USE_EXTERN_INLINES
311 /* Define inline function as optimization. */
313 /* We can use the BTOWC and WCTOB optimizations since we know that all
314 locales must use ASCII encoding for the values in the ASCII range
315 and because the wchar_t encoding is always ISO 10646. */
316 extern wint_t __btowc_alias (int __c) __asm ("btowc");
317 __extern_inline wint_t
318 __NTH (btowc (int __c))
319 { return (__builtin_constant_p (__c) && __c >= '\0' && __c <= '\x7f'
320 ? (wint_t) __c : __btowc_alias (__c)); }
322 extern int __wctob_alias (wint_t __c) __asm ("wctob");
323 __extern_inline int
324 __NTH (wctob (wint_t __wc))
325 { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
326 ? (int) __wc : __wctob_alias (__wc)); }
328 __extern_inline size_t
329 __NTH (mbrlen (const char *__restrict __s, size_t __n,
330 mbstate_t *__restrict __ps))
331 { return (__ps != NULL
332 ? mbrtowc (NULL, __s, __n, __ps) : __mbrlen (__s, __n, NULL)); }
333 #endif
335 /* Write wide character representation of multibyte character string
336 SRC to DST. */
337 extern size_t mbsrtowcs (wchar_t *__restrict __dst,
338 const char **__restrict __src, size_t __len,
339 mbstate_t *__restrict __ps) __THROW;
341 /* Write multibyte character representation of wide character string
342 SRC to DST. */
343 extern size_t wcsrtombs (char *__restrict __dst,
344 const wchar_t **__restrict __src, size_t __len,
345 mbstate_t *__restrict __ps) __THROW;
348 #ifdef __USE_XOPEN2K8
349 /* Write wide character representation of at most NMC bytes of the
350 multibyte character string SRC to DST. */
351 extern size_t mbsnrtowcs (wchar_t *__restrict __dst,
352 const char **__restrict __src, size_t __nmc,
353 size_t __len, mbstate_t *__restrict __ps) __THROW;
355 /* Write multibyte character representation of at most NWC characters
356 from the wide character string SRC to DST. */
357 extern size_t wcsnrtombs (char *__restrict __dst,
358 const wchar_t **__restrict __src,
359 size_t __nwc, size_t __len,
360 mbstate_t *__restrict __ps) __THROW;
361 #endif /* use POSIX 2008 */
364 /* The following functions are extensions found in X/Open CAE. */
365 #ifdef __USE_XOPEN
366 /* Determine number of column positions required for C. */
367 extern int wcwidth (wchar_t __c) __THROW;
369 /* Determine number of column positions required for first N wide
370 characters (or fewer if S ends before this) in S. */
371 extern int wcswidth (const wchar_t *__s, size_t __n) __THROW;
372 #endif /* Use X/Open. */
375 /* Convert initial portion of the wide string NPTR to `double'
376 representation. */
377 extern double wcstod (const wchar_t *__restrict __nptr,
378 wchar_t **__restrict __endptr) __THROW;
380 #ifdef __USE_ISOC99
381 /* Likewise for `float' and `long double' sizes of floating-point numbers. */
382 extern float wcstof (const wchar_t *__restrict __nptr,
383 wchar_t **__restrict __endptr) __THROW;
384 extern long double wcstold (const wchar_t *__restrict __nptr,
385 wchar_t **__restrict __endptr) __THROW;
386 #endif /* C99 */
388 /* Likewise for `_FloatN' and `_FloatNx' when support is enabled. */
390 #if __HAVE_FLOAT16 && defined __USE_GNU
391 extern _Float16 wcstof16 (const wchar_t *__restrict __nptr,
392 wchar_t **__restrict __endptr) __THROW;
393 #endif
395 #if __HAVE_FLOAT32 && defined __USE_GNU
396 extern _Float32 wcstof32 (const wchar_t *__restrict __nptr,
397 wchar_t **__restrict __endptr) __THROW;
398 #endif
400 #if __HAVE_FLOAT64 && defined __USE_GNU
401 extern _Float64 wcstof64 (const wchar_t *__restrict __nptr,
402 wchar_t **__restrict __endptr) __THROW;
403 #endif
405 #if __HAVE_FLOAT128 && defined __USE_GNU
406 extern _Float128 wcstof128 (const wchar_t *__restrict __nptr,
407 wchar_t **__restrict __endptr) __THROW;
408 #endif
410 #if __HAVE_FLOAT32X && defined __USE_GNU
411 extern _Float32x wcstof32x (const wchar_t *__restrict __nptr,
412 wchar_t **__restrict __endptr) __THROW;
413 #endif
415 #if __HAVE_FLOAT64X && defined __USE_GNU
416 extern _Float64x wcstof64x (const wchar_t *__restrict __nptr,
417 wchar_t **__restrict __endptr) __THROW;
418 #endif
420 #if __HAVE_FLOAT128X && defined __USE_GNU
421 extern _Float128x wcstof128x (const wchar_t *__restrict __nptr,
422 wchar_t **__restrict __endptr) __THROW;
423 #endif
426 /* Convert initial portion of wide string NPTR to `long int'
427 representation. */
428 extern long int wcstol (const wchar_t *__restrict __nptr,
429 wchar_t **__restrict __endptr, int __base) __THROW;
431 /* Convert initial portion of wide string NPTR to `unsigned long int'
432 representation. */
433 extern unsigned long int wcstoul (const wchar_t *__restrict __nptr,
434 wchar_t **__restrict __endptr, int __base)
435 __THROW;
437 #ifdef __USE_ISOC99
438 /* Convert initial portion of wide string NPTR to `long long int'
439 representation. */
440 __extension__
441 extern long long int wcstoll (const wchar_t *__restrict __nptr,
442 wchar_t **__restrict __endptr, int __base)
443 __THROW;
445 /* Convert initial portion of wide string NPTR to `unsigned long long int'
446 representation. */
447 __extension__
448 extern unsigned long long int wcstoull (const wchar_t *__restrict __nptr,
449 wchar_t **__restrict __endptr,
450 int __base) __THROW;
451 #endif /* ISO C99. */
453 #ifdef __USE_GNU
454 /* Convert initial portion of wide string NPTR to `long long int'
455 representation. */
456 __extension__
457 extern long long int wcstoq (const wchar_t *__restrict __nptr,
458 wchar_t **__restrict __endptr, int __base)
459 __THROW;
461 /* Convert initial portion of wide string NPTR to `unsigned long long int'
462 representation. */
463 __extension__
464 extern unsigned long long int wcstouq (const wchar_t *__restrict __nptr,
465 wchar_t **__restrict __endptr,
466 int __base) __THROW;
467 #endif /* Use GNU. */
469 #ifdef __USE_GNU
470 /* Parallel versions of the functions above which take the locale to
471 use as an additional parameter. These are GNU extensions inspired
472 by the POSIX.1-2008 extended locale API. */
473 extern long int wcstol_l (const wchar_t *__restrict __nptr,
474 wchar_t **__restrict __endptr, int __base,
475 locale_t __loc) __THROW;
477 extern unsigned long int wcstoul_l (const wchar_t *__restrict __nptr,
478 wchar_t **__restrict __endptr,
479 int __base, locale_t __loc) __THROW;
481 __extension__
482 extern long long int wcstoll_l (const wchar_t *__restrict __nptr,
483 wchar_t **__restrict __endptr,
484 int __base, locale_t __loc) __THROW;
486 __extension__
487 extern unsigned long long int wcstoull_l (const wchar_t *__restrict __nptr,
488 wchar_t **__restrict __endptr,
489 int __base, locale_t __loc)
490 __THROW;
492 extern double wcstod_l (const wchar_t *__restrict __nptr,
493 wchar_t **__restrict __endptr, locale_t __loc)
494 __THROW;
496 extern float wcstof_l (const wchar_t *__restrict __nptr,
497 wchar_t **__restrict __endptr, locale_t __loc)
498 __THROW;
500 extern long double wcstold_l (const wchar_t *__restrict __nptr,
501 wchar_t **__restrict __endptr,
502 locale_t __loc) __THROW;
504 # if __HAVE_FLOAT16
505 extern _Float16 wcstof16_l (const wchar_t *__restrict __nptr,
506 wchar_t **__restrict __endptr,
507 locale_t __loc) __THROW;
508 # endif
510 # if __HAVE_FLOAT32
511 extern _Float32 wcstof32_l (const wchar_t *__restrict __nptr,
512 wchar_t **__restrict __endptr,
513 locale_t __loc) __THROW;
514 # endif
516 # if __HAVE_FLOAT64
517 extern _Float64 wcstof64_l (const wchar_t *__restrict __nptr,
518 wchar_t **__restrict __endptr,
519 locale_t __loc) __THROW;
520 # endif
522 # if __HAVE_FLOAT128
523 extern _Float128 wcstof128_l (const wchar_t *__restrict __nptr,
524 wchar_t **__restrict __endptr,
525 locale_t __loc) __THROW;
526 # endif
528 # if __HAVE_FLOAT32X
529 extern _Float32x wcstof32x_l (const wchar_t *__restrict __nptr,
530 wchar_t **__restrict __endptr,
531 locale_t __loc) __THROW;
532 # endif
534 # if __HAVE_FLOAT64X
535 extern _Float64x wcstof64x_l (const wchar_t *__restrict __nptr,
536 wchar_t **__restrict __endptr,
537 locale_t __loc) __THROW;
538 # endif
540 # if __HAVE_FLOAT128X
541 extern _Float128x wcstof128x_l (const wchar_t *__restrict __nptr,
542 wchar_t **__restrict __endptr,
543 locale_t __loc) __THROW;
544 # endif
545 #endif /* use GNU */
548 #ifdef __USE_XOPEN2K8
549 /* Copy SRC to DEST, returning the address of the terminating L'\0' in
550 DEST. */
551 extern wchar_t *wcpcpy (wchar_t *__restrict __dest,
552 const wchar_t *__restrict __src) __THROW;
554 /* Copy no more than N characters of SRC to DEST, returning the address of
555 the last character written into DEST. */
556 extern wchar_t *wcpncpy (wchar_t *__restrict __dest,
557 const wchar_t *__restrict __src, size_t __n)
558 __THROW;
559 #endif
562 /* Wide character I/O functions. */
564 #if defined __USE_XOPEN2K8 || __GLIBC_USE (LIB_EXT2)
565 /* Like OPEN_MEMSTREAM, but the stream is wide oriented and produces
566 a wide character string. */
567 extern __FILE *open_wmemstream (wchar_t **__bufloc, size_t *__sizeloc) __THROW;
568 #endif
570 #if defined __USE_ISOC95 || defined __USE_UNIX98
572 /* Select orientation for stream. */
573 extern int fwide (__FILE *__fp, int __mode) __THROW;
576 /* Write formatted output to STREAM.
578 This function is a possible cancellation point and therefore not
579 marked with __THROW. */
580 extern int fwprintf (__FILE *__restrict __stream,
581 const wchar_t *__restrict __format, ...)
582 /* __attribute__ ((__format__ (__wprintf__, 2, 3))) */;
583 /* Write formatted output to stdout.
585 This function is a possible cancellation point and therefore not
586 marked with __THROW. */
587 extern int wprintf (const wchar_t *__restrict __format, ...)
588 /* __attribute__ ((__format__ (__wprintf__, 1, 2))) */;
589 /* Write formatted output of at most N characters to S. */
590 extern int swprintf (wchar_t *__restrict __s, size_t __n,
591 const wchar_t *__restrict __format, ...)
592 __THROW /* __attribute__ ((__format__ (__wprintf__, 3, 4))) */;
594 /* Write formatted output to S from argument list ARG.
596 This function is a possible cancellation point and therefore not
597 marked with __THROW. */
598 extern int vfwprintf (__FILE *__restrict __s,
599 const wchar_t *__restrict __format,
600 __gnuc_va_list __arg)
601 /* __attribute__ ((__format__ (__wprintf__, 2, 0))) */;
602 /* Write formatted output to stdout from argument list ARG.
604 This function is a possible cancellation point and therefore not
605 marked with __THROW. */
606 extern int vwprintf (const wchar_t *__restrict __format,
607 __gnuc_va_list __arg)
608 /* __attribute__ ((__format__ (__wprintf__, 1, 0))) */;
609 /* Write formatted output of at most N character to S from argument
610 list ARG. */
611 extern int vswprintf (wchar_t *__restrict __s, size_t __n,
612 const wchar_t *__restrict __format,
613 __gnuc_va_list __arg)
614 __THROW /* __attribute__ ((__format__ (__wprintf__, 3, 0))) */;
617 /* Read formatted input from STREAM.
619 This function is a possible cancellation point and therefore not
620 marked with __THROW. */
621 extern int fwscanf (__FILE *__restrict __stream,
622 const wchar_t *__restrict __format, ...)
623 /* __attribute__ ((__format__ (__wscanf__, 2, 3))) */;
624 /* Read formatted input from stdin.
626 This function is a possible cancellation point and therefore not
627 marked with __THROW. */
628 extern int wscanf (const wchar_t *__restrict __format, ...)
629 /* __attribute__ ((__format__ (__wscanf__, 1, 2))) */;
630 /* Read formatted input from S. */
631 extern int swscanf (const wchar_t *__restrict __s,
632 const wchar_t *__restrict __format, ...)
633 __THROW /* __attribute__ ((__format__ (__wscanf__, 2, 3))) */;
635 /* For historical reasons, the C99-compliant versions of the scanf
636 functions are at alternative names. When __LDBL_COMPAT is in
637 effect, this is handled in bits/wchar-ldbl.h. */
638 #if !__GLIBC_USE (DEPRECATED_SCANF) && !defined __LDBL_COMPAT
639 # ifdef __REDIRECT
640 extern int __REDIRECT (fwscanf, (__FILE *__restrict __stream,
641 const wchar_t *__restrict __format, ...),
642 __isoc99_fwscanf)
643 /* __attribute__ ((__format__ (__wscanf__, 2, 3))) */;
644 extern int __REDIRECT (wscanf, (const wchar_t *__restrict __format, ...),
645 __isoc99_wscanf)
646 /* __attribute__ ((__format__ (__wscanf__, 1, 2))) */;
647 extern int __REDIRECT_NTH (swscanf, (const wchar_t *__restrict __s,
648 const wchar_t *__restrict __format,
649 ...), __isoc99_swscanf)
650 /* __attribute__ ((__format__ (__wscanf__, 2, 3))) */;
651 # else
652 extern int __isoc99_fwscanf (__FILE *__restrict __stream,
653 const wchar_t *__restrict __format, ...);
654 extern int __isoc99_wscanf (const wchar_t *__restrict __format, ...);
655 extern int __isoc99_swscanf (const wchar_t *__restrict __s,
656 const wchar_t *__restrict __format, ...)
657 __THROW;
658 # define fwscanf __isoc99_fwscanf
659 # define wscanf __isoc99_wscanf
660 # define swscanf __isoc99_swscanf
661 # endif
662 # endif
664 #endif /* Use ISO C95, C99 and Unix98. */
666 #ifdef __USE_ISOC99
667 /* Read formatted input from S into argument list ARG.
669 This function is a possible cancellation point and therefore not
670 marked with __THROW. */
671 extern int vfwscanf (__FILE *__restrict __s,
672 const wchar_t *__restrict __format,
673 __gnuc_va_list __arg)
674 /* __attribute__ ((__format__ (__wscanf__, 2, 0))) */;
675 /* Read formatted input from stdin into argument list ARG.
677 This function is a possible cancellation point and therefore not
678 marked with __THROW. */
679 extern int vwscanf (const wchar_t *__restrict __format,
680 __gnuc_va_list __arg)
681 /* __attribute__ ((__format__ (__wscanf__, 1, 0))) */;
682 /* Read formatted input from S into argument list ARG. */
683 extern int vswscanf (const wchar_t *__restrict __s,
684 const wchar_t *__restrict __format,
685 __gnuc_va_list __arg)
686 __THROW /* __attribute__ ((__format__ (__wscanf__, 2, 0))) */;
688 # if !defined __USE_GNU \
689 && (!defined __LDBL_COMPAT || !defined __REDIRECT) \
690 && (defined __STRICT_ANSI__ || defined __USE_XOPEN2K)
691 # ifdef __REDIRECT
692 extern int __REDIRECT (vfwscanf, (__FILE *__restrict __s,
693 const wchar_t *__restrict __format,
694 __gnuc_va_list __arg), __isoc99_vfwscanf)
695 /* __attribute__ ((__format__ (__wscanf__, 2, 0))) */;
696 extern int __REDIRECT (vwscanf, (const wchar_t *__restrict __format,
697 __gnuc_va_list __arg), __isoc99_vwscanf)
698 /* __attribute__ ((__format__ (__wscanf__, 1, 0))) */;
699 extern int __REDIRECT_NTH (vswscanf, (const wchar_t *__restrict __s,
700 const wchar_t *__restrict __format,
701 __gnuc_va_list __arg), __isoc99_vswscanf)
702 /* __attribute__ ((__format__ (__wscanf__, 2, 0))) */;
703 # else
704 extern int __isoc99_vfwscanf (__FILE *__restrict __s,
705 const wchar_t *__restrict __format,
706 __gnuc_va_list __arg);
707 extern int __isoc99_vwscanf (const wchar_t *__restrict __format,
708 __gnuc_va_list __arg);
709 extern int __isoc99_vswscanf (const wchar_t *__restrict __s,
710 const wchar_t *__restrict __format,
711 __gnuc_va_list __arg) __THROW;
712 # define vfwscanf __isoc99_vfwscanf
713 # define vwscanf __isoc99_vwscanf
714 # define vswscanf __isoc99_vswscanf
715 # endif
716 # endif
718 #endif /* Use ISO C99. */
721 /* Read a character from STREAM.
723 These functions are possible cancellation points and therefore not
724 marked with __THROW. */
725 extern wint_t fgetwc (__FILE *__stream);
726 extern wint_t getwc (__FILE *__stream);
728 /* Read a character from stdin.
730 This function is a possible cancellation point and therefore not
731 marked with __THROW. */
732 extern wint_t getwchar (void);
735 /* Write a character to STREAM.
737 These functions are possible cancellation points and therefore not
738 marked with __THROW. */
739 extern wint_t fputwc (wchar_t __wc, __FILE *__stream);
740 extern wint_t putwc (wchar_t __wc, __FILE *__stream);
742 /* Write a character to stdout.
744 This function is a possible cancellation point and therefore not
745 marked with __THROW. */
746 extern wint_t putwchar (wchar_t __wc);
749 /* Get a newline-terminated wide character string of finite length
750 from STREAM.
752 This function is a possible cancellation point and therefore not
753 marked with __THROW. */
754 extern wchar_t *fgetws (wchar_t *__restrict __ws, int __n,
755 __FILE *__restrict __stream);
757 /* Write a string to STREAM.
759 This function is a possible cancellation point and therefore not
760 marked with __THROW. */
761 extern int fputws (const wchar_t *__restrict __ws,
762 __FILE *__restrict __stream);
765 /* Push a character back onto the input buffer of STREAM.
767 This function is a possible cancellation point and therefore not
768 marked with __THROW. */
769 extern wint_t ungetwc (wint_t __wc, __FILE *__stream);
772 #ifdef __USE_GNU
773 /* These are defined to be equivalent to the `char' functions defined
774 in POSIX.1:1996.
776 These functions are not part of POSIX and therefore no official
777 cancellation point. But due to similarity with an POSIX interface
778 or due to the implementation they are cancellation points and
779 therefore not marked with __THROW. */
780 extern wint_t getwc_unlocked (__FILE *__stream);
781 extern wint_t getwchar_unlocked (void);
783 /* This is the wide character version of a GNU extension.
785 This function is not part of POSIX and therefore no official
786 cancellation point. But due to similarity with an POSIX interface
787 or due to the implementation it is a cancellation point and
788 therefore not marked with __THROW. */
789 extern wint_t fgetwc_unlocked (__FILE *__stream);
791 /* Faster version when locking is not necessary.
793 This function is not part of POSIX and therefore no official
794 cancellation point. But due to similarity with an POSIX interface
795 or due to the implementation it is a cancellation point and
796 therefore not marked with __THROW. */
797 extern wint_t fputwc_unlocked (wchar_t __wc, __FILE *__stream);
799 /* These are defined to be equivalent to the `char' functions defined
800 in POSIX.1:1996.
802 These functions are not part of POSIX and therefore no official
803 cancellation point. But due to similarity with an POSIX interface
804 or due to the implementation they are cancellation points and
805 therefore not marked with __THROW. */
806 extern wint_t putwc_unlocked (wchar_t __wc, __FILE *__stream);
807 extern wint_t putwchar_unlocked (wchar_t __wc);
810 /* This function does the same as `fgetws' but does not lock the stream.
812 This function is not part of POSIX and therefore no official
813 cancellation point. But due to similarity with an POSIX interface
814 or due to the implementation it is a cancellation point and
815 therefore not marked with __THROW. */
816 extern wchar_t *fgetws_unlocked (wchar_t *__restrict __ws, int __n,
817 __FILE *__restrict __stream);
819 /* This function does the same as `fputws' but does not lock the stream.
821 This function is not part of POSIX and therefore no official
822 cancellation point. But due to similarity with an POSIX interface
823 or due to the implementation it is a cancellation point and
824 therefore not marked with __THROW. */
825 extern int fputws_unlocked (const wchar_t *__restrict __ws,
826 __FILE *__restrict __stream);
827 #endif
830 /* Format TP into S according to FORMAT.
831 Write no more than MAXSIZE wide characters and return the number
832 of wide characters written, or 0 if it would exceed MAXSIZE. */
833 extern size_t wcsftime (wchar_t *__restrict __s, size_t __maxsize,
834 const wchar_t *__restrict __format,
835 const struct tm *__restrict __tp) __THROW;
837 # ifdef __USE_GNU
838 /* Similar to `wcsftime' but takes the information from
839 the provided locale and not the global locale. */
840 extern size_t wcsftime_l (wchar_t *__restrict __s, size_t __maxsize,
841 const wchar_t *__restrict __format,
842 const struct tm *__restrict __tp,
843 locale_t __loc) __THROW;
844 # endif
846 /* Define some macros helping to catch buffer overflows. */
847 #if __USE_FORTIFY_LEVEL > 0 && defined __fortify_function
848 # include <bits/wchar2.h>
849 #endif
851 #ifdef __LDBL_COMPAT
852 # include <bits/wchar-ldbl.h>
853 #endif
855 __END_DECLS
857 #endif /* wchar.h */