C Cross Referencing & Documentation tool. Version 1.2.
The function protypes that are missing from the lex and yacc output.
Included in: | cxref.c |
func.c | |
parse-lex.c | |
parse-yacc.c | |
preproc.c | |
type.c | |
var.c |
Debugging output or not?
YYDEBUG=0 : No debugging at all, smaller, faster code.
YYDEBUG=1 : Debugging output only when parsing fails.
YYDEBUG=2 : Debugging output for each symbol from lex().
YYDEBUG=3 : Full yacc debugging output, state transitions etc.
Semantic type is a char*
#define YYSTYPE char
use prototypes in function declarations
the "const" storage-class-modifier is valid
Needed in lex but does nothing.
Defined in: | parse-lex.c |
parse_line
The current line number in the file.
Defined in: | parse-lex.c |
yylval
For communication between the lex and yacc code.
Defined in: | parse-yacc.c |
yyin
For communication between the lex and yacc code.
Defined in: | parse-lex.c |