mirror of
https://github.com/zeldaret/st
synced 2026-06-29 03:10:53 -04:00
b116e79e9f
* UnkStruct_027e09b8_001 OK * match func_ov001_020b7830 * fix build issues * UnkStruct_027e0cd8_001 49% * UnkStruct_027e0cd8_001 OK * fix build issues * UnkStruct_027e0cd8_0C_001 92% * port some MSL C++ headers from rb3 and key decomps * fix build issues * UnkStruct_027e0cd8_0C_001 98%
22 lines
369 B
C
22 lines
369 B
C
#ifndef _C_WSTRING_H
|
|
#define _C_WSTRING_H
|
|
|
|
#include <stddef.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
struct mbstate_t {};
|
|
|
|
size_t wcslen(const wchar_t *str);
|
|
wchar_t *wcscpy(wchar_t *dest, const wchar_t *src);
|
|
wchar_t *wcsncpy(wchar_t *dest, const wchar_t *src, size_t n);
|
|
const wchar_t *wcschr(const wchar_t *str, wchar_t chr);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|