54 #define isalpha(c) ((_ctype_ + 1)[(int)c] & (_U | _L)) 62 #define isupper(c) ((_ctype_ + 1)[(int)c] & _U) 70 #define islower(c) ((_ctype_ + 1)[(int)c] & _L) 78 #define isdigit(c) ((_ctype_ + 1)[(int)c] & _N) 86 #define isxdigit(c) ((_ctype_ + 1)[(int)c] & (_N | _X)) 94 #define isspace(c) ((_ctype_ + 1)[(int)c] & _S) 102 #define ispunct(c) ((_ctype_ + 1)[(int)c] & _P) 110 #define isalnum(c) ((_ctype_ + 1)[(int)c] & (_U | _L | _N)) 118 #define isprint(c) ((_ctype_ + 1)[(int)c] & (_P | _U | _L | _N | _S)) 126 #define iscntrl(c) ((_ctype_ + 1)[(int)c] & _C) 135 #define isascii(c) ((unsigned)((int)(c)) <= 0x7F) 143 #define toupper(c) (((int)(c)) - 'a' + 'A') 151 #define tolower(c) (((int)(c)) - 'A' + 'a') 161 #define toascii(c) (((int)(c)) & 0x7F) 169 #define iseof(c) (0x04 == (int)c) const char _ctype_[]
「文字種類の判定」や「文字変換」の際に使用するビットマスク配列