mirror of
https://github.com/zeldaret/ss
synced 2026-05-27 16:13:08 -04:00
19 lines
405 B
C
19 lines
405 B
C
#ifndef MSL_WSTRING_H
|
|
#define MSL_WSTRING_H
|
|
#include <common.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
|