2018-08-31 Sandra Loosemore <sandra@codesourcery.com>
[official-gcc.git] / libstdc++-v3 / testsuite / 27_io / objects / wchar_t / 13582-1_xin.cc
blob61ba496c6ca454771c09953f5ae560d84f808fdf
1 // 2004-01-11 Petur Runolfsson <peturr02@ru.is>
3 // Copyright (C) 2004-2018 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.
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.
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/>.
20 #include <iostream>
21 #include <string>
22 #include <locale>
24 // libstdc++/13582
25 void test01()
27 using namespace std;
29 ios_base::sync_with_stdio(false);
30 wcout << "Type in 12345\n";
32 wstring str;
33 wchar_t c;
35 if (wcin.get(c) && !isspace(c, wcin.getloc()))
37 str.push_back(c);
38 wcin.imbue(locale(ISO_8859(1,en_US)));
41 if (wcin.get(c) && !isspace(c, wcin.getloc()))
43 str.push_back(c);
44 wcin.imbue(locale(ISO_8859(15,fr_FR)));
47 while (wcin.get(c) && !isspace(c, wcin.getloc()))
49 str.push_back(c);
52 wcout << str << endl;
55 int main()
57 test01();
58 return 0;