mirror of
https://github.com/zeldaret/ss
synced 2026-05-25 15:25:13 -04:00
20 lines
345 B
C
20 lines
345 B
C
#ifndef MSL_WCHAR_H
|
|
#define MSL_WCHAR_H
|
|
#include <common.h>
|
|
|
|
#include <MSL_C/MSL_Common/Src/mbstring.h>
|
|
#include <MSL_C/MSL_Common/Src/wprintf.h>
|
|
#include <MSL_C/MSL_Common/Src/wstring.h>
|
|
#include <MSL_C/limits.h>
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define WCHAR_MIN SHRT_MIN
|
|
#define WCHAR_MAX USHRT_MAX
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|