%{ #include "animals.tab.h" %} %% [\n\t ] { /* Ignore whitespace */ } "species" { return SPECIES; } "declarations" { return DECLARATIONS; } "done" { return DONE; } "observation" { return OBSERVATION; } "observations" { return OBSERVATIONS; } [A-ZÅÄÖa-zåäö]+ { return NAME; } [0-9]+ { return NUMBER; } . { fprintf(stderr, "[scanner: ignoring unknown character: '%c' (%d)]\n", *yytext, *yytext); } %%