Skip to content

Instantly share code, notes, and snippets.

@mrluanma
Created June 7, 2010 03:37
Show Gist options
  • Save mrluanma/428197 to your computer and use it in GitHub Desktop.
Save mrluanma/428197 to your computer and use it in GitHub Desktop.
%%
/* match everything except newline */
. ECHO;
/* match newline */
\n ECHO;
%%
int yywrap(void) {
return 1;
}
int main(void) {
yylex();
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment