Files
RedBear-OS/local/recipes/dev/flex/source/tests/quote_in_comment.l
T

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;
}