10 lines
344 B
C
10 lines
344 B
C
![]() |
#include "Platform.h"
|
||
|
|
||
|
WCHAR *winchar_fromansi(const char* s);
|
||
|
char *winchar_toansi(const WCHAR* ws);
|
||
|
WCHAR *winchar_strcpy(WCHAR *ws1, const WCHAR *ws2);
|
||
|
WCHAR *winchar_strncpy(WCHAR *ws1, const WCHAR *ws2, size_t n);
|
||
|
size_t winchar_strlen(WCHAR *ws);
|
||
|
int winchar_strcmp(const WCHAR *ws1, const WCHAR *ws2);
|
||
|
int winchar_stoi(const WCHAR *ws);
|