Go to the source code of this file.
Defines | |
| #define | __B 0100 |
| #define | __C 040 |
| #define | __L 02 |
| #define | __N 04 |
| #define | __P 020 |
| #define | __S 010 |
| #define | __U 01 |
| #define | __X 0200 |
| #define | isalnum(c) ((_ctype+1)[c]&(__U|__L|__N)) |
| #define | isalpha(c) ((_ctype+1)[c]&(__U|__L)) |
| #define | iscntrl(c) ((_ctype+1)[c]&__C) |
| #define | isdigit(c) ((_ctype+1)[c]&__N) |
| #define | isgraph(c) ((_ctype+1)[c]&(__P|__U|__L|__N)) |
| #define | islower(c) ((_ctype+1)[c]&__L) |
| #define | isprint(c) ((_ctype+1)[c]&(__P|__U|__L|__N|__B)) |
| #define | ispunct(c) ((_ctype+1)[c]&__P) |
| #define | isspace(c) ((_ctype+1)[c]&__S) |
| #define | isupper(c) ((_ctype+1)[c]&__U) |
| #define | isxdigit(c) ((_ctype+1)[c]&__X) |
Functions | |
| int | isalnum (int) |
| int | isalpha (int) |
| int | iscntrl (int) |
| int | isdigit (int) |
| int | isgraph (int) |
| int | islower (int) |
| int | isprint (int) |
| int | ispunct (int) |
| int | isspace (int) |
| int | isupper (int) |
| int | isxdigit (int) |
| int | tolower (int) |
| int | toupper (int) |
Variables | |
| unsigned char | _ctype [] |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Definition at line 28 of file ctype.h. Referenced by printfile(). |
|
|
Definition at line 29 of file ctype.h. Referenced by yylex(). |
|
|
|
|
|
Definition at line 31 of file ctype.h. Referenced by compose(), idStr::isNumeric(), and yylex(). |
|
|
|
|
|
|
|
|
Definition at line 34 of file ctype.h. Referenced by yylex(). |
|
|
|
|
|
Definition at line 36 of file ctype.h. Referenced by GetParam(), and yylex(). |
|
|
Definition at line 37 of file ctype.h. Referenced by yyEND(). |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1.3.9.1