Twilight Princess
Decompilation of The Legend of Zelda: Twilight Princess
Loading...
Searching...
No Matches
wmem.h
Go to the documentation of this file.
1#ifndef _MSL_COMMON_WMEM_H
2#define _MSL_COMMON_WMEM_H
3
4#include <cstddef>
5
6#ifdef __cplusplus
7extern "C" {
8#endif
9
10void wmemcpy(wchar_t* dst, const wchar_t* src, size_t n);
11
12const wchar_t* wmemchr(const wchar_t* str, wchar_t needle, int max_len);
13
14#ifdef __cplusplus
15}
16#endif
17
18#endif /* _MSL_COMMON_WMEM_H */
const void * src
Definition __os.h:116
n
Definition e_fmod.c:115
void wmemcpy(wchar_t *dst, const wchar_t *src, size_t n)
Definition wmem.c:6
const wchar_t * wmemchr(const wchar_t *str, wchar_t needle, int max_len)
Definition wmem.c:10