Remove inventory commands from the pirare log - more hope of completing it.
[open-adventure.git] / main.h
1 #include <stdbool.h>
2
3 #define LINESIZE        100
4
5 typedef struct lcg_state
6 {
7   unsigned long a, c, m, x;
8 } lcg_state;
9
10 extern long ABB[], ATLOC[], BLKLIN, DFLAG, DLOC[], FIXED[], HOLDNG,
11                 LINK[], LNLENG, LNPOSN,
12                 PARMS[], PLACE[];
13 extern signed char rawbuf[LINESIZE], INLINE[LINESIZE+1], MAP1[], MAP2[];
14 extern FILE *logfp;
15 extern bool oldstyle;
16 extern lcg_state lcgstate;