00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045 #pragma GCC system_header
00046
00047 #include <bits/c++config.h>
00048 #include <cstddef>
00049 #include_next <string.h>
00050
00051 #ifndef _GLIBCXX_CSTRING
00052 #define _GLIBCXX_CSTRING 1
00053
00054
00055 #undef memchr
00056 #undef memcmp
00057 #undef memcpy
00058 #undef memmove
00059 #undef memset
00060 #undef strcat
00061 #undef strchr
00062 #undef strcmp
00063 #undef strcoll
00064 #undef strcpy
00065 #undef strcspn
00066 #undef strerror
00067 #undef strlen
00068 #undef strncat
00069 #undef strncmp
00070 #undef strncpy
00071 #undef strpbrk
00072 #undef strrchr
00073 #undef strspn
00074 #undef strstr
00075 #undef strtok
00076 #undef strxfrm
00077
00078 _GLIBCXX_BEGIN_NAMESPACE(std)
00079
00080 using ::memchr;
00081 using ::memcmp;
00082 using ::memcpy;
00083 using ::memmove;
00084 using ::memset;
00085 using ::strcat;
00086 using ::strcmp;
00087 using ::strcoll;
00088 using ::strcpy;
00089 using ::strcspn;
00090 using ::strerror;
00091 using ::strlen;
00092 using ::strncat;
00093 using ::strncmp;
00094 using ::strncpy;
00095 using ::strspn;
00096 using ::strtok;
00097 using ::strxfrm;
00098
00099 inline void*
00100 memchr(void* __p, int __c, size_t __n)
00101 { return memchr(const_cast<const void*>(__p), __c, __n); }
00102
00103 using ::strchr;
00104
00105 inline char*
00106 strchr(char* __s1, int __n)
00107 { return __builtin_strchr(const_cast<const char*>(__s1), __n); }
00108
00109 using ::strpbrk;
00110
00111 inline char*
00112 strpbrk(char* __s1, const char* __s2)
00113 { return __builtin_strpbrk(const_cast<const char*>(__s1), __s2); }
00114
00115 using ::strrchr;
00116
00117 inline char*
00118 strrchr(char* __s1, int __n)
00119 { return __builtin_strrchr(const_cast<const char*>(__s1), __n); }
00120
00121 using ::strstr;
00122
00123 inline char*
00124 strstr(char* __s1, const char* __s2)
00125 { return __builtin_strstr(const_cast<const char*>(__s1), __s2); }
00126
00127 _GLIBCXX_END_NAMESPACE
00128
00129 #endif