|
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 d
Length: 656 (0x290) Types: TextFile Names: »def.trap.h«
└─⟦87ddcff64⟧ Bits:30001253 CPHDIST85 Tape, 1985 Autumn Conference Copenhagen └─⟦this⟧ »cph85dist/hack/def.trap.h« └─⟦a0efdde77⟧ Bits:30001252 EUUGD11 Tape, 1987 Spring Conference Helsinki └─⟦this⟧ »EUUGD11/gnu-31mar87/hack/def.trap.h«
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ /* def.trap.h - version 1.0.2 */ struct trap { struct trap *ntrap; xchar tx,ty; unsigned ttyp:5; unsigned tseen:1; unsigned once:1; }; extern struct trap *ftrap; struct trap *t_at(); #define newtrap() (struct trap *) alloc(sizeof(struct trap)) /* various kinds of traps */ #define BEAR_TRAP 0 #define ARROW_TRAP 1 #define DART_TRAP 2 #define TRAPDOOR 3 #define TELEP_TRAP 4 #define PIT 5 #define SLP_GAS_TRAP 6 #define PIERC 7 #define MIMIC 8 /* used only in mklev.c */ #define TRAPNUM 9 /* if not less than 32, change sizeof(ttyp) */ /* see also mtrapseen (bit map) */