21 lines
344 B
Plaintext
21 lines
344 B
Plaintext
%{
|
|
#include "farmsay.tab.h"
|
|
extern void yyerror(...);
|
|
%}
|
|
|
|
%option noyywrap
|
|
%option nodefault
|
|
|
|
%%
|
|
|
|
<INITIAL>{
|
|
\.[[:space:]]* { return DOT; }
|
|
\![[:space:]]* { return BANG; }
|
|
\?[[:space:]]* { return QUESTIONMARK; }
|
|
. { yylval.strval = yytext; return STRING; }
|
|
\n { ; }
|
|
QUACK { return QUACK; }
|
|
}
|
|
|
|
%%
|