%{ #include #include #define YY_MAIN 0 %} %option noyywrap %option nounput %x COMMENT %% \/\* { BEGIN(COMMENT); } \*\/ { BEGIN(INITIAL); } "//".* { } /* comment - discard */ . { } /* comment - discard */ \n { } /* comment - discard */ . { ECHO; }