lexer.l 110 B

123456789
  1. %{
  2. #include <stdlib.h>
  3. #include "parser.tab.h"
  4. %}
  5. %%
  6. ("true"|"false") {return BOOLEAN;}
  7. . { yyerror(); }