%{ #include "jungen-maedchen.tab.h" %} %option noyywrap %option nodefault %% "Jan" { return JAN; } "Ulrich" { return ULRICH; } "Kirsten" { return KIRSTEN; } "Birgit" { return BIRGIT; } "Eike" { return EIKE; } "Kai" { return KAI; } [ \t]+ /* ueberspringe White-Space */ \n { return 0; /* Nur eine Zeile lesen. */ } . { return ILLEGAL_CHAR; }