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

⟦198b7f57c⟧ TextFile

    Length: 362 (0x16a)
    Types: TextFile
    Names: »advint.h«

Derivation

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

TextFile


/* 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