|
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 - download
Length: 362 (0x16a) Types: TextFile Names: »advint.h«
└─⟦b20c6495f⟧ Bits:30007238 EUUGD18: Wien-båndet, efterår 1987 └─⟦this⟧ »EUUGD18/General/Advsys/advint.h«
/* advint.h - adventure interpreter definitions */ /* Copyright (c) 1986, by David Michael Betz All rights reserved */ #include <stdio.h> #include <ctype.h> /* useful definitions */ #define TRUE 1 #define FALSE 0 #define EOS '\0' /* program limits */ #define STKSIZE 500 /* code completion codes */ #define FINISH 1 #define CHAIN 2 #define ABORT 3