mirror of
https://github.com/encounter/ogws-dtk.git
synced 2026-03-30 11:33:39 -07:00
27 lines
406 B
Plaintext
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
|