home *** CD-ROM | disk | FTP | other *** search
Lex Description | 1989-05-14 | 345 b | 25 lines |
- %{
- /* $Id: makevish.l,v 1.6 89/05/06 17:13:36 lee Exp $
- * Greg Lee
- * $Log: makevish.l,v $
- * Revision 1.6 89/05/06 17:13:36 lee
- * rel. to comp.sources.misc
- *
- */
- int i;
- %}
-
- %%
-
- ^"char *"[ \t\n]*"vis"[0-9A-Za-z_]+[ ]*"(" {
- i = 6;
- while (yytext[i++] != 's') ;
- printf("char *vis%s);\n", yytext+i);
- };
-
- . ;
- \n ;
-
- %%
- main() { yylex(); }
-