#ifndef MSL_CPP_CSTRING_H #define MSL_CPP_CSTRING_H #include #ifdef __cplusplus namespace std { using ::__memrchr; using ::memchr; using ::memcmp; using ::memcpy; using ::memmove; using ::memset; using ::strcat; using ::strchr; using ::strcmp; using ::strcpy; using ::stricmp; using ::strlen; using ::strncat; using ::strncmp; using ::strncpy; using ::strstr; } // namespace std #endif #endif