old-libc-kernel/ctype/_ctype.h

10 lines
209 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
2016-07-27 13:09:21 +00:00
#define OPEN (32|SYMBOL)
#define CLOSE (64|SYMBOL)
2016-07-27 13:03:34 +00:00
#define SPACE 128
2016-07-27 13:09:21 +00:00
#define HEXNUM (256|UPPER)
2016-07-27 13:06:55 +00:00
extern int ascii_table[256];