mirror of
https://github.com/encounter/ogws.git
synced 2026-03-30 11:33:37 -07:00
19 lines
394 B
C
19 lines
394 B
C
#ifndef MSL_WSTRING_H
|
|
#define MSL_WSTRING_H
|
|
#include <types.h>
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
size_t wcslen(const wchar_t*);
|
|
wchar_t* wcscpy(wchar_t*, const wchar_t*);
|
|
wchar_t* wcsncpy(wchar_t*, const wchar_t*, size_t);
|
|
wchar_t* wcscat(wchar_t*, const wchar_t*);
|
|
int wcscmp(const wchar_t*, const wchar_t*);
|
|
wchar_t* wcschr(const wchar_t*, wchar_t);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|