]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/21_strings/c_strings/wchar_t/1.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 21_strings / c_strings / wchar_t / 1.cc
CommitLineData
4aca39bb 1// 2001-04-02 Benjamin Kosnik <bkoz@redhat.com>
2
f1717362 3// Copyright (C) 2001-2016 Free Software Foundation, Inc.
4aca39bb 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
6bc9506f 8// Free Software Foundation; either version 3, or (at your option)
4aca39bb 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
6bc9506f 17// with this library; see the file COPYING3. If not see
18// <http://www.gnu.org/licenses/>.
4aca39bb 19
20// 21.4: null-terminiated sequence utilities
21
22#include <string>
23#include <cstring>
24#include <cwchar>
25
26void test01()
27{
f8ef786c 28 bool test __attribute__((unused)) = true;
4aca39bb 29 wchar_t c = L'a';
30 const wchar_t cc = L'b';
31 wchar_t* c1 = &c;
32 const wchar_t* cc1 = &cc;
33 const wchar_t* ccarray1 = L"san francisco roof garden inspectors";
34 const wchar_t* ccarray2 = L"san francisco sunny-day park inspectors";
35 wchar_t carray[50];
36 std::wcscpy(carray, ccarray1);
37
38 // const wchar_t* wcschr(const wchar_t* s, wchar_t c);
39 // wchar_t* wcschr(wchar_t* s, wchar_t c);
40 cc1 = std::wcschr(ccarray1, L'c');
41 c1 = std::wcschr(carray, L'c');
42
43 // const char* wcspbrk(const wchar_t* s1, const wchar_t* s2);
44 // char* wcspbrk(wchar_t* s1, const wchar_t* s2);
45 cc1 = std::wcspbrk(ccarray1, ccarray2);
46 c1 = std::wcspbrk(carray, ccarray2);
47
48 // const wchar_t* strrchr(const wchar_t* s, wchar_t c);
49 // wchar_t* strrchr(wchar_t* s, wchar_t c);
50 cc1 = std::wcsrchr(ccarray1, L'c');
51 c1 = std::wcsrchr(carray, L'c');
52
53 // const wchar_t* strstr(const wchar_t* s1, const wchar_t* s2);
54 // wchar_t* strstr(wchar_t* s1, const wchar_t* s2);
55 cc1 = std::wcsstr(ccarray1, ccarray2);
56 c1 = std::wcsstr(carray, carray);
57
58 // const wchar_t* wmemchr(const wchar_t* s, wchar_t c, size_t n);
59 // wchar_t* wmemchr( wchar_t* s, wchar_t c, size_t n);
60 cc1 = std::wmemchr(ccarray1, L'a', 3);
61 c1 = std::wmemchr(carray, L'a', 3);
1c78c762 62
63 cc1 = cc1; // Suppress unused warnings.
64 c1 = c1;
4aca39bb 65}
66
67int main()
68{
69 test01();
70 return 0;
71}