OSDN Git Service

2e7a6c35d7c5686b303d37458a6a13d098349637
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / testsuite / 21_strings / c_strings / wchar_t / 1.cc
1 // 2001-04-02  Benjamin Kosnik  <bkoz@redhat.com>
2
3 // Copyright (C) 2001, 2009 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 // 21.4: null-terminiated sequence utilities
21
22 #include <string>
23 #include <cstring>
24 #include <cwchar>
25
26 void test01()
27 {
28   bool test __attribute__((unused)) = true;
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);
62 }
63
64 int main()
65 {
66   test01();
67   return 0;
68 }