Skip to content

Instantly share code, notes, and snippets.

@nachivpn
Created May 23, 2014 10:05
Show Gist options
  • Save nachivpn/e8177641f819e6b1eee9 to your computer and use it in GitHub Desktop.
Save nachivpn/e8177641f819e6b1eee9 to your computer and use it in GitHub Desktop.
Usage of yylex() in a LEX program
/* Declarations */
%%
{number} {return atoi(yytext);}
%%
int main()
{
int num = yylex();
printf("Found: %d",num);
return 1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment