2018-02-14 18:31:52 +00:00
|
|
|
%option bison-bridge
|
|
|
|
%option reentrant
|
|
|
|
|
2018-02-13 19:27:38 +00:00
|
|
|
%{
|
|
|
|
#include "dice.h"
|
|
|
|
#include "dice_parse.h"
|
2018-02-14 18:31:52 +00:00
|
|
|
|
2018-02-13 19:27:38 +00:00
|
|
|
%}
|
|
|
|
|
|
|
|
%%
|
2018-02-14 18:31:52 +00:00
|
|
|
[0-9]+ {
|
|
|
|
yylval->integer = atoi(yytext);
|
|
|
|
return TOK_INTEGER;
|
|
|
|
}
|
|
|
|
|
|
|
|
[d] {
|
|
|
|
return TOK_DICESEP;
|
|
|
|
}
|
2018-02-13 19:27:38 +00:00
|
|
|
%%
|