old-libc-kernel/ctype/_ctype.h
2016-07-27 15:03:34 +02:00

9 lines
No EOL
174 B
C

#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