NetBSD/external/bsd/flex/dist/tests/quote_in_comment.l

17 lines
192 B
Plaintext

%option 8bit noyywrap
%%
.|\n { ECHO;
//' "
}
%%
int
main (void)
{
yyin = stdin;
yyout = stdout;
while (yylex())
;
printf("TEST RETURNING OK.\n");
return 0;
}