]> git.ipfire.org Git - thirdparty/gcc.git/blob - libstdc++-v3/testsuite/27_io/objects/wchar_t/13582-1_xin.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 27_io / objects / wchar_t / 13582-1_xin.cc
1 // 2004-01-11 Petur Runolfsson <peturr02@ru.is>
2
3 // Copyright (C) 2004-2020 Free Software Foundation, Inc.
4 //
5 // This file is part of the GNU ISO C++ Library. This library is free
6 // software; you can redistribute it and/or modify it under the
7 // terms of the GNU General Public License as published by the
8 // Free Software Foundation; either version 3, or (at your option)
9 // any later version.
10
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
15
16 // You should have received a copy of the GNU General Public License along
17 // with this library; see the file COPYING3. If not see
18 // <http://www.gnu.org/licenses/>.
19
20 #include <iostream>
21 #include <string>
22 #include <locale>
23
24 // libstdc++/13582
25 void test01()
26 {
27 using namespace std;
28
29 ios_base::sync_with_stdio(false);
30 wcout << "Type in 12345\n";
31
32 wstring str;
33 wchar_t c;
34
35 if (wcin.get(c) && !isspace(c, wcin.getloc()))
36 {
37 str.push_back(c);
38 wcin.imbue(locale(ISO_8859(1,en_US)));
39 }
40
41 if (wcin.get(c) && !isspace(c, wcin.getloc()))
42 {
43 str.push_back(c);
44 wcin.imbue(locale(ISO_8859(15,fr_FR)));
45 }
46
47 while (wcin.get(c) && !isspace(c, wcin.getloc()))
48 {
49 str.push_back(c);
50 }
51
52 wcout << str << endl;
53 }
54
55 int main()
56 {
57 test01();
58 return 0;
59 }