|
DataMuseum.dkPresents historical artifacts from the history of: DKUUG/EUUG Conference tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about DKUUG/EUUG Conference tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - downloadIndex: T q
Length: 726 (0x2d6) Types: TextFile Names: »qmsfntlex.l«
└─⟦060c9c824⟧ Bits:30007080 DKUUG TeX 2/12/89 └─⟦this⟧ »./DVIware/laser-setters/quicspool/libqmsquery/qmsfntlex.l« └─⟦52210d11f⟧ Bits:30007239 EUUGD2: TeX 3 1992-12 └─⟦af5ba6c8e⟧ »unix3.0/DVIWARE.tar.Z« └─⟦ca79c7339⟧ └─⟦this⟧ »DVIware/laser-setters/quicspool/libqmsquery/qmsfntlex.l«
/* $Header: qmsfntlex.l,v 1.1 88/01/15 12:19:00 simpson Rel $ */ %{ /* $Log: qmsfntlex.l,v $ * Revision 1.1 88/01/15 12:19:00 simpson * initial release * * Revision 0.1 87/12/11 21:34:44 simpson * beta test * */ #undef input #define input() (((yytchar=yysptr>yysbuf?U(*--yysptr):timedgetc(_Ifp)) \ ==10?(yylineno++, yytchar):yytchar)==EOF?0:yytchar) %} integer [0-9]+ %% FRO: { yylval = FRO; return FRO; } FDL: { yylval = FDL; return FDL; } {integer} { yylval = atoi(yytext); return INTEGER; } P | L | S | V | C { yylval = yytext[0]; return yytext[0]; } . { yylval = yytext[0]; return CHAR; } NONE return NONE; \r\n return ENDLINE;