]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/22_locale/ctype/is/char/3.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 22_locale / ctype / is / char / 3.cc
CommitLineData
83ffe9cd 1// Copyright (C) 2000-2023 Free Software Foundation, Inc.
119b2ec6
BK
2//
3// This file is part of the GNU ISO C++ Library. This library is free
4// software; you can redistribute it and/or modify it under the
5// terms of the GNU General Public License as published by the
748086b7 6// Free Software Foundation; either version 3, or (at your option)
119b2ec6
BK
7// any later version.
8
9// This library is distributed in the hope that it will be useful,
10// but WITHOUT ANY WARRANTY; without even the implied warranty of
11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12// GNU General Public License for more details.
13
14// You should have received a copy of the GNU General Public License along
748086b7
JJ
15// with this library; see the file COPYING3. If not see
16// <http://www.gnu.org/licenses/>.
17
119b2ec6
BK
18
19// 22.2.1.3.2 ctype<char> members
20
21#include <locale>
22#include <testsuite_hooks.h>
23
24typedef char char_type;
25
26// Per Liboriussen <liborius@stofanet.dk>
27void test03()
28{
119b2ec6
BK
29 std::ctype_base::mask maskdata[256];
30 for (int i = 0; i < 256; ++i)
31 maskdata[i] = std::ctype_base::alpha;
32 std::ctype<char>* f = new std::ctype<char>(maskdata);
6df0c1b4
BK
33 std::locale loc_c = std::locale::classic();
34 std::locale loc(loc_c, f);
119b2ec6
BK
35 for (int i = 0; i < 256; ++i)
36 {
37 char_type ch = i;
38 VERIFY( std::isalpha(ch, loc) );
39 }
40}
41
42int main()
43{
44 test03();
45 return 0;
46}