OSDN Git Service

2008-11-13 Paolo Carlini <paolo.carlini@oracle.com>
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / include / c_global / cstring
1 // -*- C++ -*- forwarding header.
2
3 // Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
4 // 2006, 2007, 2008
5 // Free Software Foundation, Inc.
6 //
7 // This file is part of the GNU ISO C++ Library.  This library is free
8 // software; you can redistribute it and/or modify it under the
9 // terms of the GNU General Public License as published by the
10 // Free Software Foundation; either version 2, or (at your option)
11 // any later version.
12
13 // This library is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 // GNU General Public License for more details.
17
18 // You should have received a copy of the GNU General Public License
19 // along with this library; see the file COPYING.  If not, write to
20 // the Free Software Foundation, 51 Franklin Street, Fifth Floor,
21 // Boston, MA 02110-1301, USA.
22
23 // As a special exception, you may use this file as part of a free software
24 // library without restriction.  Specifically, if other files instantiate
25 // templates or use macros or inline functions from this file, or you compile
26 // this file and link it with other files to produce an executable, this
27 // file does not by itself cause the resulting executable to be covered by
28 // the GNU General Public License.  This exception does not however
29 // invalidate any other reasons why the executable file might be covered by
30 // the GNU General Public License.
31
32 /** @file cstring
33  *  This is a Standard C++ Library file.  You should @c #include this file
34  *  in your programs, rather than any of the "*.h" implementation files.
35  *
36  *  This is the C++ version of the Standard C Library header @c string.h,
37  *  and its contents are (mostly) the same as that header, but are all
38  *  contained in the namespace @c std (except for names which are defined
39  *  as macros in C).
40  */
41
42 //
43 // ISO C++ 14882: 20.4.6  C library
44 //
45
46 #pragma GCC system_header
47
48 #include <bits/c++config.h>
49 #include <cstddef>
50 #include <string.h>
51
52 #ifndef _GLIBCXX_CSTRING
53 #define _GLIBCXX_CSTRING 1
54
55 // Get rid of those macros defined in <string.h> in lieu of real functions.
56 #undef memchr
57 #undef memcmp
58 #undef memcpy
59 #undef memmove
60 #undef memset
61 #undef strcat
62 #undef strchr
63 #undef strcmp
64 #undef strcoll
65 #undef strcpy
66 #undef strcspn
67 #undef strerror
68 #undef strlen
69 #undef strncat
70 #undef strncmp
71 #undef strncpy
72 #undef strpbrk
73 #undef strrchr
74 #undef strspn
75 #undef strstr
76 #undef strtok
77 #undef strxfrm
78
79 _GLIBCXX_BEGIN_NAMESPACE(std)
80
81   using ::memchr;
82   using ::memcmp;
83   using ::memcpy;
84   using ::memmove;
85   using ::memset;
86   using ::strcat;
87   using ::strcmp;
88   using ::strcoll;
89   using ::strcpy;
90   using ::strcspn;
91   using ::strerror;
92   using ::strlen;
93   using ::strncat;
94   using ::strncmp;
95   using ::strncpy;
96   using ::strspn;
97   using ::strtok;
98   using ::strxfrm;
99
100   inline void*
101   memchr(void* __p, int __c, size_t __n)
102   { return memchr(const_cast<const void*>(__p), __c, __n); }
103
104   using ::strchr;
105
106   inline char*
107   strchr(char* __s1, int __n)
108   { return __builtin_strchr(const_cast<const char*>(__s1), __n); }
109
110   using ::strpbrk;
111
112   inline char*
113   strpbrk(char* __s1, const char* __s2)
114   { return __builtin_strpbrk(const_cast<const char*>(__s1), __s2); }
115
116   using ::strrchr;
117
118   inline char*
119   strrchr(char* __s1, int __n)
120   { return __builtin_strrchr(const_cast<const char*>(__s1), __n); }
121
122   using ::strstr;
123
124   inline char*
125   strstr(char* __s1, const char* __s2)
126   { return __builtin_strstr(const_cast<const char*>(__s1), __s2); }
127
128 _GLIBCXX_END_NAMESPACE
129
130 #endif