/* IPP Phase 1: lexer description */ %{ /* C Declarations */ #include "parser.tab.h" %} /* Lexer options */ %option noyywrap %% \n return(NL); STOP return(STOP); SEQ return(SEQ); [ ]* /* Ignore spaces */ --.*\n /* Ignore comments */ %% /* No user code */ /* End of file */