cstring
Go to the documentation of this file.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
00046 #pragma GCC system_header
00047
00048 #include <bits/c++config.h>
00049 #include <cstddef>
00050 #include <string.h>
00051
00052 #ifndef _GLIBCXX_CSTRING
00053 #define _GLIBCXX_CSTRING 1
00054
00055
00056 #undef memchr
00057 #undef memcmp
00058 #undef memcpy
00059 #undef memmove
00060 #undef memset
00061 #undef strcat
00062 #undef strchr
00063 #undef strcmp
00064 #undef strcoll
00065 #undef strcpy
00066 #undef strcspn
00067 #undef strerror
00068 #undef strlen
00069 #undef strncat
00070 #undef strncmp
00071 #undef strncpy
00072 #undef strpbrk
00073 #undef strrchr
00074 #undef strspn
00075 #undef strstr
00076 #undef strtok
00077 #undef strxfrm
00078
00079 _GLIBCXX_BEGIN_NAMESPACE(std)
00080
00081 using ::memchr;
00082 using ::memcmp;
00083 using ::memcpy;
00084 using ::memmove;
00085 using ::memset;
00086 using ::strcat;
00087 using ::strcmp;
00088 using ::strcoll;
00089 using ::strcpy;
00090 using ::strcspn;
00091 using ::strerror;
00092 using ::strlen;
00093 using ::strncat;
00094 using ::strncmp;
00095 using ::strncpy;
00096 using ::strspn;
00097 using ::strtok;
00098 using ::strxfrm;
00099
00100 inline void*
00101 memchr(void* __p, int __c, size_t __n)
00102 { return memchr(const_cast<const void*>(__p), __c, __n); }
00103
00104 using ::strchr;
00105
00106 inline char*
00107 strchr(char* __s1, int __n)
00108 { return __builtin_strchr(const_cast<const char*>(__s1), __n); }
00109
00110 using ::strpbrk;
00111
00112 inline char*
00113 strpbrk(char* __s1, const char* __s2)
00114 { return __builtin_strpbrk(const_cast<const char*>(__s1), __s2); }
00115
00116 using ::strrchr;
00117
00118 inline char*
00119 strrchr(char* __s1, int __n)
00120 { return __builtin_strrchr(const_cast<const char*>(__s1), __n); }
00121
00122 using ::strstr;
00123
00124 inline char*
00125 strstr(char* __s1, const char* __s2)
00126 { return __builtin_strstr(const_cast<const char*>(__s1), __s2); }
00127
00128 _GLIBCXX_END_NAMESPACE
00129
00130 #endif