Go to the source code of this file.
Defines | |
| #define | GOBBLE(c) (LOOK()==c?(SKIP(),1):0) |
| #define | SKIPSPACE() do { while(ISSPACE(LOOK()) && LOOK()!='\n') SKIP(); }while(0) |
| #define | SKIPWHITE() do { while(ISSPACE(LOOK())) SKIP(); }while(0) |
| #define | SKIPUPTO(X) do { while(LOOK()!=(X) && LOOK()) SKIP(); }while(0) |
| #define | WCHAR p_wchar0 |
| #define | LOOK() EXTRACT_UCHAR(lex.pos) |
| #define | GETC() EXTRACT_UCHAR(lex.pos++) |
| #define | SKIP() lex.pos++ |
| #define | SKIPN(N) (lex.pos += (N)) |
| #define | READBUF(X) |
| #define | TWO_CHAR(X, Y) ((X)<<8)+(Y) |
| #define | ISWORD(X) ((len == strlen(X)) && !MEMCMP(buf,X,strlen(X))) |
| #define | parse_esc_seq parse_esc_seq0 |
| #define | yylex yylex0 |
| #define | low_yylex low_yylex0 |
| #define | lex_atoi atoi |
| #define | lex_strtol STRTOL |
| #define | lex_strtod my_strtod |
| #define | lex_isidchar isidchar |
Functions | |
| int | parse_esc_seq (WCHAR *buf, int *chr, ptrdiff_t *len) |
| int | yylex (YYSTYPE *yylval) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Value: |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
||||||||||||||||
|
|
|
|
|
1.3.9.1