XINU
ctype.h
Go to the documentation of this file.
1 
30 #define _U 0x01
32 #define _L 0x02
34 #define _N 0x04
36 #define _S 0x08
38 #define _P 0x10
40 #define _C 0x20
42 #define _X 0x40
44 
46 extern const char _ctype_[];
47 
54 #define isalpha(c) ((_ctype_ + 1)[(int)c] & (_U | _L))
55 
62 #define isupper(c) ((_ctype_ + 1)[(int)c] & _U)
63 
70 #define islower(c) ((_ctype_ + 1)[(int)c] & _L)
71 
78 #define isdigit(c) ((_ctype_ + 1)[(int)c] & _N)
79 
86 #define isxdigit(c) ((_ctype_ + 1)[(int)c] & (_N | _X))
87 
94 #define isspace(c) ((_ctype_ + 1)[(int)c] & _S)
95 
102 #define ispunct(c) ((_ctype_ + 1)[(int)c] & _P)
103 
110 #define isalnum(c) ((_ctype_ + 1)[(int)c] & (_U | _L | _N))
111 
118 #define isprint(c) ((_ctype_ + 1)[(int)c] & (_P | _U | _L | _N | _S))
119 
126 #define iscntrl(c) ((_ctype_ + 1)[(int)c] & _C)
127 
135 #define isascii(c) ((unsigned)((int)(c)) <= 0x7F)
136 
143 #define toupper(c) (((int)(c)) - 'a' + 'A')
144 
151 #define tolower(c) (((int)(c)) - 'A' + 'a')
152 
161 #define toascii(c) (((int)(c)) & 0x7F)
162 
169 #define iseof(c) (0x04 == (int)c)
const char _ctype_[]
「文字種類の判定」や「文字変換」の際に使用するビットマスク配列
Definition: ctype_.c:39