How to call a flex parser in c ?
|
feedback
|
|
By calling By default
| |||
|
feedback
|
|
It's worth noting that yylex is not declared anywhere so you need to declare it:
Traditionally it seems that the entire output of lex or flex would be incorporated in the C program via #include. Recent versions of Flex include an option to create a header file, either on the command line via the
option, or in the script
The header file contains stuff which can be used, for example, to ask Flex to read from memory rather than a file. | ||||
|
feedback
|