Twilight Princess
Decompilation of The Legend of Zelda: Twilight Princess
Loading...
Searching...
No Matches
wctype_api.h
Go to the documentation of this file.
1#ifndef _MSL_WCTYPE_H
2#define _MSL_WCTYPE_H
3
4#include <cstddef>
5
6#ifdef __cplusplus
7extern "C" {
8#endif
9
10#define wctype_alpha 0x0001
11#define wctype_blank 0x0002
12#define wctype_cntrl 0x0004
13#define wctype_digit 0x0008
14#define wctype_graph 0x0010
15#define wctype_lower 0x0020
16#define wctype_print 0x0040
17#define wctype_punct 0x0080
18#define wctype_space 0x0100
19#define wctype_upper 0x0200
20#define wctype_xdigit 0x0400
21
22#define wctype_alnum (wctype_alpha | wctype_digit)
23
24extern const unsigned short __wctype_mapC[256];
25extern const wchar_t __wlower_mapC[256];
26extern const wchar_t __wupper_mapC[256];
27
28#ifdef __cplusplus
29}
30#endif
31
32#endif /* _MSL_COMMON_CTYPE_H */
const wchar_t __wupper_mapC[256]
Definition wctype.c:151
const wchar_t __wlower_mapC[256]
Definition wctype.c:134
const unsigned short __wctype_mapC[256]
Definition wctype.c:3