Go to the source code of this file.
Defines | |
| #define | INVALID (((ch < 32) && (ch != '\t')) || (ch > 126)) |
| #define | IDENTIFIER ((ch < 65) || ((ch > 90) && (ch < 97)) || (ch > 122)) |
| #define | SEPERATOR ((ch == ' ') || (ch == '=') || (ch == '\t')) |
| #define | END_OF_LINE (ch == '\0') |
| #define | USELESS_LINE ((ch == '#') || (ch == ';') || (ch == ' ') || (ch == '\n')) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1.3.9.1