Files
ss/include/MSL_C/MSL_Common/Src/wstring.h
T
2023-12-24 11:35:03 -05:00

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