old-libc-kernel/ctype/_ctype.h

9 lines
174 B
C
Raw Normal View History

2016-07-27 13:03:34 +00:00
#define CONTROL 1
#define SYMBOL 2
#define UPPER 4
#define LOWER 8
#define NUMBER 16
#define OPEN 32|SYMBOL
#define CLOSE 64|SYMBOL
#define SPACE 128
#define HEXNUM 256|UPPER