diff options
author | Jean-Baptiste Queru <jbq@google.com> | 2009-11-12 18:45:14 -0800 |
---|---|---|
committer | Jean-Baptiste Queru <jbq@google.com> | 2009-11-12 18:45:14 -0800 |
commit | 194d3fa048cf909ca592dd56fa538dc9cd3f5ddb (patch) | |
tree | 3a00bb9e267cf952d7d1140ff9a39ca07ee6c994 /libstdc++ | |
parent | fde8642fc43bdd224e43e5ee9583a49a758fb03c (diff) | |
download | bionic-194d3fa048cf909ca592dd56fa538dc9cd3f5ddb.zip bionic-194d3fa048cf909ca592dd56fa538dc9cd3f5ddb.tar.gz bionic-194d3fa048cf909ca592dd56fa538dc9cd3f5ddb.tar.bz2 |
eclair snapshot
Diffstat (limited to 'libstdc++')
-rw-r--r-- | libstdc++/include/cstring | 45 |
1 files changed, 7 insertions, 38 deletions
diff --git a/libstdc++/include/cstring b/libstdc++/include/cstring index 4ff7a6f..80473cc 100644 --- a/libstdc++/include/cstring +++ b/libstdc++/include/cstring @@ -39,59 +39,28 @@ namespace std { -using ::memccpy; using ::memchr; -using ::memrchr; using ::memcmp; using ::memcpy; using ::memmove; using ::memset; -using ::memmem; -// In string.h but not part of the std -// using ::memswap; - -using ::index; -using ::rindex; +using ::strcat; using ::strchr; -using ::strrchr; - -using ::strlen; using ::strcmp; +using ::strcoll; using ::strcpy; -using ::strcat; - -using ::strcasecmp; -using ::strncasecmp; -using ::strdup; - -using ::strstr; -using ::strcasestr; -using ::strtok; -using ::strtok_r; - +using ::strcspn; using ::strerror; -using ::strerror_r; - -using ::strnlen; +using ::strlen; using ::strncat; -using ::strndup; using ::strncmp; using ::strncpy; - -// In string.h but not part of the std -// using ::strlcat; -// using ::strlcpy; - -using ::strcspn; using ::strpbrk; -using ::strsep; +using ::strrchr; using ::strspn; - -using ::strsignal; - -using ::strcoll; +using ::strstr; +using ::strtok; using ::strxfrm; - } // namespace std #endif // BIONIC_LIBSTDCPP_INCLUDE_CSTRING__ |