up vote 0 down vote favorite
share [g+] share [fb]

How to call a flex parser in c ?

link|improve this question

12% accept rate
feedback

2 Answers

By calling yylex().

By default lex reads from stdin, if you want it to read from other stream, assign yyin, like

yyin = fopen("myfile", "r");
link|improve this answer
feedback

It's worth noting that yylex is not declared anywhere so you need to declare it:

int yylex ();

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

--header-file

option, or in the script

%option header-file

The header file contains stuff which can be used, for example, to ask Flex to read from memory rather than a file.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.