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 u

⟦962ab2840⟧ TextFile

    Length: 1162 (0x48a)
    Types: TextFile
    Names: »ulex.l«

Derivation

└─⟦b20c6495f⟧ Bits:30007238 EUUGD18: Wien-båndet, efterår 1987
    └─⟦this⟧ »EUUGD18/General/Othello/ulex.l« 

TextFile

%{
/*
 *	ex:set ts=8 sw=8:
 */
# include	"y.tab.h"
extern int	yylval;
extern char	sbuf[];
#undef input
#define input()	lexgetc()
#undef unput
#define unput(c)	lexungetc(c)
%}
%%
[ \t]		;
\004		return EOG;
black		{ yylval = -1; return BL; }
both		return BOTH;
computer	return COMPUTER;
debug		return DEBUG;
eval		return EVAL;
file		return FILEe;
first		return FIRST;
from		return FROM;
game		return GAME;
grid		return GRID;
help		return HELP;
hint		return HINT;
human		return HUMAN;
into		return INTO;
level		return LEVEL;
me		return HUMAN;
move		return MOVE;
new		return NEW;
neither		return NEITHER;
no		return NO;
nogrid		return NOGRID;
nohelp		return NOHELP;
noscore		return NOSCORE;
none		return NONE;
play		return PLAY;
quit		return QUIT;
record		return RECORD;
replay		return REPLAY;
restart		return RESTART;
save		return SAVE;
score		return SCORE;
second		return SECOND;
to		return TO;
undo		return UNDO;
white		{ yylval =  1; return WH; }
you		return COMPUTER;
\n		return NL;
[0-9]+		{ yylval = atoi (yytext); return NUMBER; }
","		return COMMA;
";"		return SEMI;
\"[^"]*\"	{ strcpy (sbuf, yytext+1); sbuf[yyleng-2]='\0'; return STRING; }
.		return ERR;