]> git.ipfire.org Git - thirdparty/gcc.git/blob - libstdc++-v3/include/c_std/cwchar
c++config (std::size_t, [...]): Provide typedefs.
[thirdparty/gcc.git] / libstdc++-v3 / include / c_std / cwchar
1 // -*- C++ -*- forwarding header.
2
3 // Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
4 // 2006, 2007, 2009, 2010
5 // Free Software Foundation, Inc.
6 //
7 // This file is part of the GNU ISO C++ Library. This library is free
8 // software; you can redistribute it and/or modify it under the
9 // terms of the GNU General Public License as published by the
10 // Free Software Foundation; either version 3, or (at your option)
11 // any later version.
12
13 // This library is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 // GNU General Public License for more details.
17
18 // Under Section 7 of GPL version 3, you are granted additional
19 // permissions described in the GCC Runtime Library Exception, version
20 // 3.1, as published by the Free Software Foundation.
21
22 // You should have received a copy of the GNU General Public License and
23 // a copy of the GCC Runtime Library Exception along with this program;
24 // see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
25 // <http://www.gnu.org/licenses/>.
26
27 /** @file include/cwchar
28 * This is a Standard C++ Library file. You should @c #include this file
29 * in your programs, rather than any of the @a *.h implementation files.
30 *
31 * This is the C++ version of the Standard C Library header @c wchar.h,
32 * and its contents are (mostly) the same as that header, but are all
33 * contained in the namespace @c std (except for names which are defined
34 * as macros in C).
35 */
36
37 //
38 // ISO C++ 14882: 21.4
39 //
40
41 #ifndef _GLIBCXX_CWCHAR
42 #define _GLIBCXX_CWCHAR 1
43
44 #pragma GCC system_header
45
46 #include <bits/c++config.h>
47
48 #if _GLIBCXX_HAVE_WCHAR_H
49 #include <wchar.h>
50 #endif
51
52 // Need to do a bit of trickery here with mbstate_t as char_traits
53 // assumes it is in wchar.h, regardless of wchar_t specializations.
54 #ifndef _GLIBCXX_HAVE_MBSTATE_T
55 extern "C"
56 {
57 typedef struct
58 {
59 int __fill[6];
60 } mbstate_t;
61 }
62 #endif
63
64 _GLIBCXX_BEGIN_NAMESPACE(std)
65
66 using ::mbstate_t;
67
68 _GLIBCXX_END_NAMESPACE
69
70 // Get rid of those macros defined in <wchar.h> in lieu of real functions.
71 #undef btowc
72 #undef fgetwc
73 #undef fgetws
74 #undef fputwc
75 #undef fputws
76 #undef fwide
77 #undef fwprintf
78 #undef fwscanf
79 #undef getwc
80 #undef getwchar
81 #undef mbrlen
82 #undef mbrtowc
83 #undef mbsinit
84 #undef mbsrtowcs
85 #undef putwc
86 #undef putwchar
87 #undef swprintf
88 #undef swscanf
89 #undef ungetwc
90 #undef vfwprintf
91 #if _GLIBCXX_HAVE_VFWSCANF
92 # undef vfwscanf
93 #endif
94 #undef vswprintf
95 #if _GLIBCXX_HAVE_VSWSCANF
96 # undef vswscanf
97 #endif
98 #undef vwprintf
99 #if _GLIBCXX_HAVE_VWSCANF
100 # undef vwscanf
101 #endif
102 #undef wcrtomb
103 #undef wcscat
104 #undef wcschr
105 #undef wcscmp
106 #undef wcscoll
107 #undef wcscpy
108 #undef wcscspn
109 #undef wcsftime
110 #undef wcslen
111 #undef wcsncat
112 #undef wcsncmp
113 #undef wcsncpy
114 #undef wcspbrk
115 #undef wcsrchr
116 #undef wcsrtombs
117 #undef wcsspn
118 #undef wcsstr
119 #undef wcstod
120 #if _GLIBCXX_HAVE_WCSTOF
121 # undef wcstof
122 #endif
123 #undef wcstok
124 #undef wcstol
125 #undef wcstoul
126 #undef wcsxfrm
127 #undef wctob
128 #undef wmemchr
129 #undef wmemcmp
130 #undef wmemcpy
131 #undef wmemmove
132 #undef wmemset
133 #undef wprintf
134 #undef wscanf
135
136 #if _GLIBCXX_USE_WCHAR_T
137
138 _GLIBCXX_BEGIN_NAMESPACE(std)
139
140 using ::wint_t;
141
142 using ::btowc;
143 using ::fgetwc;
144 using ::fgetws;
145 using ::fputwc;
146 using ::fputws;
147 using ::fwide;
148 using ::fwprintf;
149 using ::fwscanf;
150 using ::getwc;
151 using ::getwchar;
152 using ::mbrlen;
153 using ::mbrtowc;
154 using ::mbsinit;
155 using ::mbsrtowcs;
156 using ::putwc;
157 using ::putwchar;
158 using ::swprintf;
159 using ::swscanf;
160 using ::ungetwc;
161 using ::vfwprintf;
162 #if _GLIBCXX_HAVE_VFWSCANF
163 using ::vfwscanf;
164 #endif
165 using ::vswprintf;
166 #if _GLIBCXX_HAVE_VSWSCANF
167 using ::vswscanf;
168 #endif
169 using ::vwprintf;
170 #if _GLIBCXX_HAVE_VWSCANF
171 using ::vwscanf;
172 #endif
173 using ::wcrtomb;
174 using ::wcscat;
175 using ::wcscmp;
176 using ::wcscoll;
177 using ::wcscpy;
178 using ::wcscspn;
179 using ::wcsftime;
180 using ::wcslen;
181 using ::wcsncat;
182 using ::wcsncmp;
183 using ::wcsncpy;
184 using ::wcsrtombs;
185 using ::wcsspn;
186 using ::wcstod;
187 #if _GLIBCXX_HAVE_WCSTOF
188 using ::wcstof;
189 #endif
190 using ::wcstok;
191 using ::wcstol;
192 using ::wcstoul;
193 using ::wcsxfrm;
194 using ::wctob;
195 using ::wmemcmp;
196 using ::wmemcpy;
197 using ::wmemmove;
198 using ::wmemset;
199 using ::wprintf;
200 using ::wscanf;
201 using ::wcschr;
202 using ::wcspbrk;
203 using ::wcsrchr;
204 using ::wcsstr;
205 using ::wmemchr;
206
207 #ifndef __CORRECT_ISO_CPP_WCHAR_H_PROTO
208 inline wchar_t*
209 wcschr(wchar_t* __p, wchar_t __c)
210 { return wcschr(const_cast<const wchar_t*>(__p), __c); }
211
212 inline wchar_t*
213 wcspbrk(wchar_t* __s1, const wchar_t* __s2)
214 { return wcspbrk(const_cast<const wchar_t*>(__s1), __s2); }
215
216 inline wchar_t*
217 wcsrchr(wchar_t* __p, wchar_t __c)
218 { return wcsrchr(const_cast<const wchar_t*>(__p), __c); }
219
220 inline wchar_t*
221 wcsstr(wchar_t* __s1, const wchar_t* __s2)
222 { return wcsstr(const_cast<const wchar_t*>(__s1), __s2); }
223
224 inline wchar_t*
225 wmemchr(wchar_t* __p, wchar_t __c, size_t __n)
226 { return wmemchr(const_cast<const wchar_t*>(__p), __c, __n); }
227 #endif
228
229 _GLIBCXX_END_NAMESPACE
230
231 #if _GLIBCXX_USE_C99
232
233 #undef wcstold
234 #undef wcstoll
235 #undef wcstoull
236
237 _GLIBCXX_BEGIN_NAMESPACE(__gnu_cxx)
238
239 #if _GLIBCXX_USE_C99_CHECK || _GLIBCXX_USE_C99_DYNAMIC
240 extern "C" long double
241 (wcstold)(const wchar_t * restrict, wchar_t ** restrict) throw ();
242 #endif
243 #if !_GLIBCXX_USE_C99_DYNAMIC
244 using ::wcstold;
245 #endif
246 #if _GLIBCXX_USE_C99_LONG_LONG_CHECK || _GLIBCXX_USE_C99_LONG_LONG_DYNAMIC
247 extern "C" long long int
248 (wcstoll)(const wchar_t * restrict, wchar_t ** restrict, int) throw ();
249 extern "C" unsigned long long int
250 (wcstoull)(const wchar_t * restrict, wchar_t ** restrict, int) throw ();
251 #endif
252 #if !_GLIBCXX_USE_C99_LONG_LONG_DYNAMIC
253 using ::wcstoll;
254 using ::wcstoull;
255 #endif
256
257 _GLIBCXX_END_NAMESPACE
258
259 _GLIBCXX_BEGIN_NAMESPACE(std)
260
261 using ::__gnu_cxx::wcstold;
262 using ::__gnu_cxx::wcstoll;
263 using ::__gnu_cxx::wcstoull;
264
265 _GLIBCXX_END_NAMESPACE
266
267 #endif
268
269 #endif //_GLIBCXX_USE_WCHAR_T
270
271 #endif