OSDN Git Service

Licensing changes to GPLv3 resp. GPLv3 with GCC Runtime Exception.
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / testsuite / 21_strings / headers / cwchar / functions_std.cc
1 // { dg-do compile }
2 // { dg-require-c-std "" }
3
4 // Copyright (C) 2007, 2009 Free Software Foundation, Inc.
5 //
6 // This file is part of the GNU ISO C++ Library.  This library is free
7 // software; you can redistribute it and/or modify it under the
8 // terms of the GNU General Public License as published by the
9 // Free Software Foundation; either version 3, or (at your option)
10 // any later version.
11
12 // This library is distributed in the hope that it will be useful,
13 // but WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 // GNU General Public License for more details.
16
17 // You should have received a copy of the GNU General Public License along
18 // with this library; see the file COPYING3.  If not see
19 // <http://www.gnu.org/licenses/>.
20
21 #include <cwchar>
22
23 namespace gnu
24 {
25   using std::btowc;
26   using std::fgetwc;
27   using std::fgetws;
28   using std::fputwc;
29   using std::fputws;
30   using std::fwide;
31   using std::fwprintf;
32   using std::fwscanf;
33   using std::getwc;
34   using std::getwchar;
35   using std::mbrlen;
36   using std::mbrtowc;
37   using std::mbsinit;
38   using std::mbsrtowcs;
39   using std::putwc;
40   using std::putwchar;
41   using std::swprintf;
42   using std::swscanf;
43   using std::ungetwc;
44   using std::vfwprintf;
45   using std::vswprintf;
46   using std::vwprintf;
47   using std::wcrtomb;
48   using std::wcscat;
49   using std::wcschr;
50   using std::wcscmp;
51   using std::wcscoll;
52   using std::wcscpy;
53   using std::wcscmp;
54   using std::wcsftime;
55   using std::wcslen;
56   using std::wcsncat;
57   using std::wcsncmp;
58   using std::wcsncpy;
59   using std::wcspbrk;
60   using std::wcsrchr;
61   using std::wcsrtombs;
62   using std::wcsspn;
63   using std::wcsstr;
64   using std::wcstod;
65   using std::wcstok;
66   using std::wcstol;
67   using std::wcstoul;
68   using std::wcsxfrm;
69   using std::wctob;
70   using std::wmemchr;
71   using std::wmemcmp;
72   using std::wmemcpy;
73   using std::wmemmove;
74   using std::wmemset;
75   using std::wprintf;
76   using std::wscanf;
77 }