%{ #include "lex.h" #undef YYLMAX #define YYLMAX 2000 %} %p 7000 %n 7000 %e 2000 Digit [0-9] Letter [A-Za-z] Sep [_-] whitesp [ \n\t] %% "#include" return(INCLUDE); {whitesp}+ return(WSPACE); \"[^"\n]*\" return(STRING); . return(TOKEN_NOT_RECOGNIZED);