vote up 0 vote down star

How to call a flex parser in c ?

flag

13% accept rate

2 Answers

vote up 5 vote down

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|flag
vote up 1 vote down

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|flag

Your Answer

Get an OpenID
or
never shown

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