DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download
Index: T q

⟦f6dc3dc32⟧ TextFile

    Length: 857 (0x359)
    Types: TextFile
    Names: »qmsverlex.l«

Derivation

└─⟦060c9c824⟧ Bits:30007080 DKUUG TeX 2/12/89
    └─⟦this⟧ »./DVIware/laser-setters/quicspool/libqmsquery/qmsverlex.l« 
└─⟦52210d11f⟧ Bits:30007239 EUUGD2: TeX 3 1992-12
    └─⟦af5ba6c8e⟧ »unix3.0/DVIWARE.tar.Z« 
        └─⟦ca79c7339⟧ 
            └─⟦this⟧ »DVIware/laser-setters/quicspool/libqmsquery/qmsverlex.l« 

TextFile

/* $Header: qmsverlex.l,v 1.1 88/01/15 12:19:49 simpson Rel $ */
%{
/*
$Log:	qmsverlex.l,v $
 * Revision 1.1  88/01/15  12:19:49  simpson
 * initial release
 * 
 * Revision 0.1  87/12/11  21:34:50  simpson
 * beta test
 * 
*/
#ifdef TRW 
#include <local/standard.h>
#else
#define EQN(s, t, n)	(!strncmp(s, t, n))
#endif
#undef input
#define input() (((yytchar=yysptr>yysbuf?U(*--yysptr):timedgetc(_Ifp)) \
    ==10?(yylineno++, yytchar):yytchar)==EOF?0:yytchar)    
double	atof();
%}
real	([0-9]*\.[0-9]+)|([0-9]+\.[0-9]*)
integer	[0-9]+
%%
QUIC		    return QUIC;
Date		    return DATE;
Firmware	    return FIRMWARE;
Version		    return VERSION;
= |
: |
\/		    return yytext[0];
{integer}	    {
			yylval.i = atoi(yytext);
			return INTEGER;
		    }
{real}		    {
			yylval.r = atof(yytext);
			return REAL;
		    }
\r\n		    return ENDLINE;
[ \t]+		    ;