mirror of
https://github.com/zeldaret/oot-vc.git
synced 2026-09-26 13:33:20 -04:00
b28c406d4a
* started libc * progress * format * match file_io.c * match mem_funcs and math_api * printf prog and match strtoul.c * format * match bsearch.c * match ansi_fp.c * make USE_CURRENT_LOCALE a global define * started time.c * match the printf function * add splits for oot-u and oot-e * cleanup * review
22 lines
402 B
C
22 lines
402 B
C
#ifndef _WSTRING_H
|
|
#define _WSTRING_H
|
|
|
|
#include "revolution/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
|