]> git.ipfire.org Git - thirdparty/glibc.git/blame - include/wchar.h
Avoid parallel GCC install in build-many-glibcs.py.
[thirdparty/glibc.git] / include / wchar.h
CommitLineData
6796bc80 1#ifndef _WCHAR_H
30de3b18 2#include <wcsmbs/wchar.h>
bdbf022d 3
31341567 4# ifndef _ISOMAC
d64b6ad0 5# ifdef _WCHAR_H
509d1b68 6
da4cfe38
RM
7extern __typeof (wcscasecmp_l) __wcscasecmp_l;
8extern __typeof (wcsncasecmp_l) __wcsncasecmp_l;
9extern __typeof (wcscoll_l) __wcscoll_l;
10extern __typeof (wcsxfrm_l) __wcsxfrm_l;
11extern __typeof (wcstol_l) __wcstol_l;
12extern __typeof (wcstoul_l) __wcstoul_l;
13extern __typeof (wcstoll_l) __wcstoll_l;
14extern __typeof (wcstoull_l) __wcstoull_l;
15extern __typeof (wcstod_l) __wcstod_l;
16extern __typeof (wcstof_l) __wcstof_l;
17extern __typeof (wcstold_l) __wcstold_l;
18extern __typeof (wcsftime_l) __wcsftime_l;
773e305e
RM
19libc_hidden_proto (__wcstol_l)
20libc_hidden_proto (__wcstoul_l)
21libc_hidden_proto (__wcstoll_l)
22libc_hidden_proto (__wcstoull_l)
23libc_hidden_proto (__wcstod_l)
24libc_hidden_proto (__wcstof_l)
25libc_hidden_proto (__wcstold_l)
ee2a5ae8 26libc_hidden_proto (__wcsftime_l)
da4cfe38
RM
27
28
a784e502 29extern double __wcstod_internal (const wchar_t *__restrict __nptr,
9b2e9577
UD
30 wchar_t **__restrict __endptr, int __group)
31 __THROW;
a784e502 32extern float __wcstof_internal (const wchar_t *__restrict __nptr,
9b2e9577
UD
33 wchar_t **__restrict __endptr, int __group)
34 __THROW;
a784e502 35extern long double __wcstold_internal (const wchar_t *__restrict __nptr,
9b2e9577
UD
36 wchar_t **__restrict __endptr,
37 int __group) __THROW;
a784e502 38extern long int __wcstol_internal (const wchar_t *__restrict __nptr,
9b2e9577
UD
39 wchar_t **__restrict __endptr,
40 int __base, int __group) __THROW;
a784e502 41extern unsigned long int __wcstoul_internal (const wchar_t *__restrict __npt,
9b2e9577
UD
42 wchar_t **__restrict __endptr,
43 int __base, int __group) __THROW;
44__extension__
a784e502 45extern long long int __wcstoll_internal (const wchar_t *__restrict __nptr,
9b2e9577
UD
46 wchar_t **__restrict __endptr,
47 int __base, int __group) __THROW;
48__extension__
a784e502 49extern unsigned long long int __wcstoull_internal (const wchar_t *
9b2e9577
UD
50 __restrict __nptr,
51 wchar_t **
52 __restrict __endptr,
53 int __base,
54 int __group) __THROW;
e02cabec
JM
55extern unsigned long long int ____wcstoull_l_internal (const wchar_t *,
56 wchar_t **, int, int,
57 __locale_t);
509d1b68
RM
58libc_hidden_proto (__wcstof_internal)
59libc_hidden_proto (__wcstod_internal)
60libc_hidden_proto (__wcstold_internal)
61libc_hidden_proto (__wcstol_internal)
62libc_hidden_proto (__wcstoll_internal)
63libc_hidden_proto (__wcstoul_internal)
64libc_hidden_proto (__wcstoull_internal)
773e305e
RM
65libc_hidden_proto (wcstof)
66libc_hidden_proto (wcstod)
67libc_hidden_proto (wcstold)
68libc_hidden_proto (wcstol)
69libc_hidden_proto (wcstoll)
70libc_hidden_proto (wcstoul)
71libc_hidden_proto (wcstoull)
509d1b68
RM
72
73libc_hidden_proto (__wcscasecmp_l)
74libc_hidden_proto (__wcsncasecmp_l)
75
ccadf7b5
UD
76libc_hidden_proto (__wcscoll_l)
77libc_hidden_proto (__wcsxfrm_l)
78
3ba06713
UD
79libc_hidden_proto (fputws_unlocked)
80libc_hidden_proto (putwc_unlocked)
b9b91868 81libc_hidden_proto (putwc)
3ba06713
UD
82
83libc_hidden_proto (vswscanf)
84
9b0b40d3 85libc_hidden_proto (mbrtowc)
8784cc18 86libc_hidden_proto (wcrtomb)
2f44ee08
JM
87extern int __wcscmp (const wchar_t *__s1, const wchar_t *__s2)
88 __THROW __attribute_pure__;
89libc_hidden_proto (__wcscmp)
8784cc18
RM
90libc_hidden_proto (wcsftime)
91libc_hidden_proto (wcsspn)
92libc_hidden_proto (wcschr)
2cfbdb9a
JM
93/* The C++ overloading of wcschr means we have to repeat the type to
94 declare __wcschr instead of using typeof, to avoid errors in C++
2f44ee08
JM
95 tests; in addition, __THROW cannot be used with a function type
96 from typeof in C++. The same applies to __wmemchr and, as regards
97 __THROW, to __wcscmp and __wcscoll. */
2cfbdb9a
JM
98extern wchar_t *__wcschr (const wchar_t *__wcs, wchar_t __wc)
99 __THROW __attribute_pure__;
100libc_hidden_proto (__wcschr)
2f44ee08
JM
101extern int __wcscoll (const wchar_t *__s1, const wchar_t *__s2) __THROW;
102libc_hidden_proto (__wcscoll)
8784cc18 103libc_hidden_proto (wcspbrk)
509d1b68 104
6b4a158e 105extern __typeof (wmemset) __wmemset;
aca6ea65
JM
106extern wchar_t *__wmemchr (const wchar_t *__s, wchar_t __c, size_t __n)
107 __THROW __attribute_pure__;
9b0b40d3 108libc_hidden_proto (wmemchr)
aca6ea65 109libc_hidden_proto (__wmemchr)
9b0b40d3 110libc_hidden_proto (wmemset)
01cad84e 111libc_hidden_proto (__wmemset)
9b0b40d3 112
bdbf022d 113/* Now define the internal interfaces. */
a784e502 114extern int __wcscasecmp (const wchar_t *__s1, const wchar_t *__s2)
fb4dfa0c 115 __attribute_pure__;
a784e502 116extern int __wcsncasecmp (const wchar_t *__s1, const wchar_t *__s2,
fb4dfa0c
AJ
117 size_t __n)
118 __attribute_pure__;
a784e502
UD
119extern size_t __wcslen (const wchar_t *__s) __attribute_pure__;
120extern size_t __wcsnlen (const wchar_t *__s, size_t __maxlen)
fb4dfa0c 121 __attribute_pure__;
821a6bb4 122extern wchar_t *__wcscat (wchar_t *dest, const wchar_t *src);
c19559b0 123extern wint_t __btowc (int __c);
a784e502 124extern int __mbsinit (const __mbstate_t *__ps);
fe559c5e 125extern size_t __mbrtowc (wchar_t *__restrict __pwc,
a784e502 126 const char *__restrict __s, size_t __n,
c19559b0 127 __mbstate_t *__restrict __p);
37ba7d66
UD
128libc_hidden_proto (__mbrtowc)
129libc_hidden_proto (__mbrlen)
fe559c5e 130extern size_t __wcrtomb (char *__restrict __s, wchar_t __wc,
c19559b0 131 __mbstate_t *__restrict __ps);
fe559c5e 132extern size_t __mbsrtowcs (wchar_t *__restrict __dst,
a784e502 133 const char **__restrict __src,
c19559b0 134 size_t __len, __mbstate_t *__restrict __ps);
fe559c5e 135extern size_t __wcsrtombs (char *__restrict __dst,
a784e502 136 const wchar_t **__restrict __src,
c19559b0 137 size_t __len, __mbstate_t *__restrict __ps);
fe559c5e 138extern size_t __mbsnrtowcs (wchar_t *__restrict __dst,
a784e502 139 const char **__restrict __src, size_t __nmc,
c19559b0 140 size_t __len, __mbstate_t *__restrict __ps);
fe559c5e 141extern size_t __wcsnrtombs (char *__restrict __dst,
a784e502 142 const wchar_t **__restrict __src,
fe559c5e 143 size_t __nwc, size_t __len,
c19559b0 144 __mbstate_t *__restrict __ps);
8215c9ec 145extern wchar_t *__wcsncpy (wchar_t *__restrict __dest,
a784e502
UD
146 const wchar_t *__restrict __src, size_t __n);
147extern wchar_t *__wcpcpy (wchar_t *__dest, const wchar_t *__src);
148extern wchar_t *__wcpncpy (wchar_t *__dest, const wchar_t *__src,
c19559b0 149 size_t __n);
a784e502 150extern wchar_t *__wmemcpy (wchar_t *__s1, const wchar_t *s2,
c19559b0 151 size_t __n);
fe559c5e 152extern wchar_t *__wmempcpy (wchar_t *__restrict __s1,
a784e502 153 const wchar_t *__restrict __s2,
c19559b0 154 size_t __n);
a784e502 155extern wchar_t *__wmemmove (wchar_t *__s1, const wchar_t *__s2,
c19559b0 156 size_t __n);
a784e502 157extern wchar_t *__wcschrnul (const wchar_t *__s, wchar_t __wc)
fb4dfa0c 158 __attribute_pure__;
d64b6ad0 159
d1646309 160extern int __vfwscanf (__FILE *__restrict __s,
a784e502 161 const wchar_t *__restrict __format,
c19559b0
UD
162 __gnuc_va_list __arg)
163 /* __attribute__ ((__format__ (__wscanf__, 2, 0)) */;
d4b0774f 164extern int __vswprintf (wchar_t *__restrict __s, size_t __n,
a784e502 165 const wchar_t *__restrict __format,
d4b0774f
AJ
166 __gnuc_va_list __arg)
167 /* __attribute__ ((__format__ (__wprintf__, 3, 0))) */;
51028f34 168extern int __fwprintf (__FILE *__restrict __s,
a784e502 169 const wchar_t *__restrict __format, ...)
c6251f03 170 /* __attribute__ ((__format__ (__wprintf__, 2, 3))) */;
51028f34 171extern int __vfwprintf (__FILE *__restrict __s,
a784e502 172 const wchar_t *__restrict __format,
51028f34 173 __gnuc_va_list __arg)
c6251f03 174 /* __attribute__ ((__format__ (__wprintf__, 2, 0))) */;
de1c3ebb 175#ifndef __cplusplus
c6251f03
RM
176extern int __vfwprintf_chk (FILE *__restrict __s, int __flag,
177 const wchar_t *__restrict __format,
178 __gnuc_va_list __arg)
51028f34 179 /* __attribute__ ((__format__ (__wprintf__, 3, 0))) */;
8215c9ec
UD
180extern int __vswprintf_chk (wchar_t *__restrict __s, size_t __n,
181 int __flag, size_t __s_len,
a784e502 182 const wchar_t *__restrict __format,
8215c9ec
UD
183 __gnuc_va_list __arg)
184 /* __attribute__ ((__format__ (__wprintf__, 5, 0))) */;
c6251f03 185libc_hidden_proto (__vfwprintf_chk)
8215c9ec 186libc_hidden_proto (__vswprintf_chk)
de1c3ebb 187#endif
8215c9ec 188
874aa523 189extern int __isoc99_fwscanf (__FILE *__restrict __stream,
a784e502
UD
190 const wchar_t *__restrict __format, ...);
191extern int __isoc99_wscanf (const wchar_t *__restrict __format, ...);
192extern int __isoc99_swscanf (const wchar_t *__restrict __s,
193 const wchar_t *__restrict __format, ...)
874aa523
UD
194 __THROW;
195extern int __isoc99_vfwscanf (__FILE *__restrict __s,
a784e502 196 const wchar_t *__restrict __format,
874aa523 197 __gnuc_va_list __arg);
a784e502 198extern int __isoc99_vwscanf (const wchar_t *__restrict __format,
874aa523 199 __gnuc_va_list __arg);
a784e502
UD
200extern int __isoc99_vswscanf (const wchar_t *__restrict __s,
201 const wchar_t *__restrict __format,
874aa523 202 __gnuc_va_list __arg) __THROW;
45dcd79f
JM
203extern int __vswscanf (const wchar_t *__restrict __s,
204 const wchar_t *__restrict __format,
205 __gnuc_va_list __arg) __THROW;
874aa523 206libc_hidden_proto (__isoc99_vswscanf)
45dcd79f 207libc_hidden_proto (__vswscanf)
874aa523
UD
208libc_hidden_proto (__isoc99_vfwscanf)
209
01beb5b9
UD
210/* Internal functions. */
211extern size_t __mbsrtowcs_l (wchar_t *dst, const char **src, size_t len,
212 mbstate_t *ps, __locale_t l) attribute_hidden;
2def8764
UD
213
214/* Special version. We know that all uses of mbsinit inside the libc
215 have a non-NULL parameter. And certainly we can access the
216 internals of the data structure directly. */
217# define mbsinit(state) ((state)->__count == 0)
218# define __mbsinit(state) ((state)->__count == 0)
219
31341567 220# endif
d64b6ad0 221# endif
6796bc80 222#endif
b9ea2dd0
UD
223
224/* Undefine all __need_* constants in case we are included to get those
225 constants but the whole file was already read. */
226#undef __need_mbstate_t
227#undef __need_wint_t