1 // -*- C++ -*- forwarding header.
3 // Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
4 // 2006, 2007, 2008, 2009, 2010
5 // Free Software Foundation, Inc.
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)
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.
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.
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/>.
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.
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
38 // ISO C++ 14882: 21.4
41 #pragma GCC system_header
43 #include <bits/c++config.h>
45 #if _GLIBCXX_HAVE_WCHAR_H
49 #ifndef _GLIBCXX_CWCHAR
50 #define _GLIBCXX_CWCHAR 1
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
69 // Get rid of those macros defined in <wchar.h> in lieu of real functions.
90 #if _GLIBCXX_HAVE_VFWSCANF
94 #if _GLIBCXX_HAVE_VSWSCANF
98 #if _GLIBCXX_HAVE_VWSCANF
119 #if _GLIBCXX_HAVE_WCSTOF
135 #if _GLIBCXX_USE_WCHAR_T
137 namespace std _GLIBCXX_VISIBILITY(default)
157 #ifndef _GLIBCXX_HAVE_BROKEN_VSWPRINTF
163 #if _GLIBCXX_HAVE_VFWSCANF
166 #ifndef _GLIBCXX_HAVE_BROKEN_VSWPRINTF
169 #if _GLIBCXX_HAVE_VSWSCANF
173 #if _GLIBCXX_HAVE_VWSCANF
190 #if _GLIBCXX_HAVE_WCSTOF
210 _GLIBCXX_BEGIN_NAMESPACE_VERSION
212 #ifndef __CORRECT_ISO_CPP_WCHAR_H_PROTO
214 wcschr(wchar_t* __p, wchar_t __c)
215 { return wcschr(const_cast<const wchar_t*>(__p), __c); }
218 wcspbrk(wchar_t* __s1, const wchar_t* __s2)
219 { return wcspbrk(const_cast<const wchar_t*>(__s1), __s2); }
222 wcsrchr(wchar_t* __p, wchar_t __c)
223 { return wcsrchr(const_cast<const wchar_t*>(__p), __c); }
226 wcsstr(wchar_t* __s1, const wchar_t* __s2)
227 { return wcsstr(const_cast<const wchar_t*>(__s1), __s2); }
230 wmemchr(wchar_t* __p, wchar_t __c, size_t __n)
231 { return wmemchr(const_cast<const wchar_t*>(__p), __c, __n); }
234 _GLIBCXX_END_NAMESPACE_VERSION
245 #if _GLIBCXX_USE_C99_CHECK || _GLIBCXX_USE_C99_DYNAMIC
246 extern "C" long double
247 (wcstold)(const wchar_t * __restrict, wchar_t ** __restrict) throw ();
249 #if !_GLIBCXX_USE_C99_DYNAMIC
252 #if _GLIBCXX_USE_C99_LONG_LONG_CHECK || _GLIBCXX_USE_C99_LONG_LONG_DYNAMIC
253 extern "C" long long int
254 (wcstoll)(const wchar_t * __restrict, wchar_t ** __restrict, int) throw ();
255 extern "C" unsigned long long int
256 (wcstoull)(const wchar_t * __restrict, wchar_t ** __restrict, int) throw ();
258 #if !_GLIBCXX_USE_C99_LONG_LONG_DYNAMIC
262 } // namespace __gnu_cxx
266 using ::__gnu_cxx::wcstold;
267 using ::__gnu_cxx::wcstoll;
268 using ::__gnu_cxx::wcstoull;
273 #endif //_GLIBCXX_USE_WCHAR_T
275 #ifdef __GXX_EXPERIMENTAL_CXX0X__
277 #ifdef _GLIBCXX_USE_WCHAR_T
281 #if _GLIBCXX_HAVE_WCSTOF
284 #if _GLIBCXX_HAVE_VFWSCANF
287 #if _GLIBCXX_HAVE_VSWSCANF
290 #if _GLIBCXX_HAVE_VWSCANF
301 #endif // _GLIBCXX_USE_WCHAR_T
303 #endif // __GXX_EXPERIMENTAL_CXX0X__