Files
2023-12-15 00:25:57 -05:00

22 lines
325 B
Plaintext

#ifndef MSL_CPP_CWCHAR_H
#define MSL_CPP_CWCHAR_H
#include <wchar.h>
#ifdef __cplusplus
namespace std {
using ::mbstowcs;
using ::mbtowc;
using ::swprintf;
using ::vswprintf;
using ::wcscat;
using ::wcschr;
using ::wcscmp;
using ::wcscpy;
using ::wcslen;
using ::wcsncpy;
using ::wcstombs;
} // namespace std
#endif
#endif