2 * unput.l : An example of what *not*
10 void putback_yytext(void);
14 foobar putback_yytext();
15 raboof putback_yytext();
18 void putback_yytext(void)
21 int l = strlen(yytext);
22 char buffer[YY_BUF_SIZE];
24 strcpy(buffer,yytext);
25 printf("Got: %s\n",yytext);