Files
2024-09-05 17:44:58 -06:00

27 lines
406 B
Plaintext

#ifndef MSL_CPP_CSTRING_H
#define MSL_CPP_CSTRING_H
#include <string.h>
#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