%{ #include "echo.tab.h" #include void yyerror(const char *s); %} %% [ \t\n]+ { } [a-zA-Z]+ { yylval.str = strdup(yytext); return TEXT; } . { yyerror("Unexpected character"); } %% int yywrap() { return 1; }