Home | History | Annotate | Download | only in aic7xxx

Lines Matching refs:COMMENT

85 %x COMMENT
96 "/*" { BEGIN COMMENT; /* Enter comment eating state */ }
97 <COMMENT>"/*" { fprintf(stderr, "Warning! Comment within comment."); }
98 <COMMENT>\n { ++yylineno; }
99 <COMMENT>[^*/\n]* ;
100 <COMMENT>"*"+[^*/\n]* ;
101 <COMMENT>"/"+[^*/\n]* ;
102 <COMMENT>"*"+"/" { BEGIN INITIAL; }