OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [libstdc++-v3/] [testsuite/] [21_strings/] [c_strings/] [char/] [1.cc] - Blame information for rev 749

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 742 jeremybenn
// 2001-04-02  Benjamin Kosnik  <bkoz@redhat.com>
2
 
3
// Copyright (C) 2001, 2003, 2009, 2010 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
 
25
void test01()
26
{
27
  bool test __attribute__((unused)) = true;
28
  char c = 'a';
29
  const char cc = 'b';
30
  char* c1 = &c;
31
  const char* cc1 = &cc;
32
  const char* ccarray1 = "san francisco roof garden inspectors";
33
  const char* ccarray2 = "san francisco sunny-day park inspectors";
34
  char carray[50];
35
  std::strcpy(carray, ccarray1);
36
  void* v = carray;
37
  const void* cv = ccarray1;
38
 
39
  // const char* strchr(const char* s, int c);
40
  // char* strchr(char* s, int c);
41
  cc1 = std::strchr(ccarray1, 'c');
42
  c1 = std::strchr(carray, 'c');
43
 
44
  // const char* strpbrk(const char* s1, const char* s2);
45
  // char* strpbrk(char* s1, const char* s2);
46
  cc1 = std::strpbrk(ccarray1, ccarray2);
47
  c1 = std::strpbrk(carray, ccarray2);
48
 
49
  // const char* strrchr(const char* s, int c);
50
  // char* strrchr(char* s, int c);
51
  cc1 = std::strrchr(ccarray1, 'c');
52
  c1 = std::strrchr(carray, 'c');
53
 
54
  // const char* strstr(const char* s1, const char* s2);
55
  // char* strstr(char* s1, const char* s2);
56
  cc1 = std::strstr(ccarray1, ccarray2);
57
  c1 = std::strstr(carray, carray);
58
 
59
  // const void* memchr(const void* s, int c, size_t n);
60
  // void* memchr(      void* s, int c, size_t n);
61
  cv = std::memchr(cv, 'a', 3);
62
  v = std::memchr(v, 'a', 3);
63
 
64
  cc1 = cc1; // Suppress unused warnings.
65
  c1 = c1;
66
}
67
 
68
int main()
69
{
70
  test01();
71
  return 0;
72
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.