Files
ogws/include/MSL/cstring
T
2023-06-25 16:52:48 -04:00

21 lines
306 B
Plaintext

#ifndef MSL_CPP_CSTRING_H
#define MSL_CPP_CSTRING_H
#include <string.h>
#ifdef __cplusplus
namespace std {
using ::strcat;
using ::strchr;
using ::strcmp;
using ::strcpy;
using ::stricmp;
using ::strlen;
using ::strncat;
using ::strncmp;
using ::strncpy;
using ::strstr;
} // namespace std
#endif
#endif