blob: ca6513cb81c1504c9f1a8ca7353f61a3e84a4c76 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
%{
#include <stdlib.h>
#include "parser.tab.h"
extern int yylex(void);
extern int yyerror();
%}
%option noyywrap nounput noinput
%%
("true"|"false") {return BOOLEAN;}
. { yyerror(); }
|