bool.l (117B)
1 %{ 2 #include "y.tab.h" 3 %} 4 %% 5 6 \t|\n {;} 7 [A-Z] { yylval.sym = yytext[0]; return SYMBOL; } 8 . { return yytext[0]; } 9 10 %%