pokeplatinum/tools/cw/include/MSL_C/msl_cpp_std_string.h

48 lines
769 B
C

#ifndef _MSL_CPP_STD_STRING_H
#define _MSL_CPP_STD_STRING_H
#ifdef __cplusplus
namespace std {
using ::size_t;
using ::memchr;
using ::memcmp;
using ::memcpy;
using ::memmove;
using ::memset;
using ::strcat;
using ::strchr;
using ::strcmp;
using ::strcoll;
using ::strcpy;
using ::strcspn;
using ::strerror;
using ::strlen;
using ::strncat;
using ::strncmp;
using ::strncpy;
using ::strpbrk;
using ::strrchr;
using ::strspn;
using ::strstr;
using ::strtok;
using ::strxfrm;
#if defined(__STDC_WANT_SECURE_LIB__) && __STDC_WANT_SECURE_LIB__
using ::errno_t;
using ::rsize_t;
using ::memcpy_s;
using ::memmove_s;
using ::strnlen_s;
using ::strcpy_s;
using ::strncpy_s;
using ::strcat_s;
using ::strncat_s;
using ::strerror_s;
using ::strtok_s;
#endif
}
#endif
#endif