]> git.ipfire.org Git - thirdparty/gcc.git/blame - 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
CommitLineData
09625c16
PC
1// 2004-01-11 Petur Runolfsson <peturr02@ru.is>
2
a5544970 3// Copyright (C) 2004-2019 Free Software Foundation, Inc.
09625c16
PC
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
748086b7 8// Free Software Foundation; either version 3, or (at your option)
09625c16
PC
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
748086b7
JJ
17// with this library; see the file COPYING3. If not see
18// <http://www.gnu.org/licenses/>.
09625c16
PC
19
20#include <iostream>
21#include <string>
22#include <locale>
23
24// libstdc++/13582
25void test01()
26{
09625c16
PC
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);
4216708a 38 wcin.imbue(locale(ISO_8859(1,en_US)));
09625c16
PC
39 }
40
41 if (wcin.get(c) && !isspace(c, wcin.getloc()))
42 {
43 str.push_back(c);
4216708a 44 wcin.imbue(locale(ISO_8859(15,fr_FR)));
09625c16
PC
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
55int main()
56{
57 test01();
58 return 0;
59}