Twilight Princess
Decompilation of The Legend of Zelda: Twilight Princess
Loading...
Searching...
No Matches
extras.h
Go to the documentation of this file.
1#ifndef _MSL_COMMON_EXTRAS_H
2#define _MSL_COMMON_EXTRAS_H
3
4#include <cstddef>
5
6#ifdef __cplusplus
7extern "C" {
8#endif
9
10int strnicmp(const char* str1, const char* str2, int n);
11int stricmp(const char* str1, const char* str2);
12size_t wcslen(const wchar_t* s);
13
14#ifdef __cplusplus
15}
16#endif
17
18#endif /* _MSL_COMMON_EXTRAS_H */
s
Definition e_acos.c:99
n
Definition e_fmod.c:115
int strnicmp(const char *str1, const char *str2, int n)
Definition extras.c:23
size_t wcslen(const wchar_t *s)
Definition wstring.c:3
int stricmp(const char *str1, const char *str2)
Definition extras.c:4