Fix order of 2nd and 3rd arguments to fread so the count of the
[unix-history] / usr / src / games / cribbage / cribbage.h
CommitLineData
13e793a1
KA
1extern CARD deck[ CARDS ]; /* a deck */
2extern CARD phand[ FULLHAND ]; /* player's hand */
3extern CARD chand[ FULLHAND ]; /* computer's hand */
4extern CARD crib[ CINHAND ]; /* the crib */
5extern CARD turnover; /* the starter */
6
7extern CARD known[ CARDS ]; /* cards we have seen */
8extern int knownum; /* # of cards we know */
9
10extern int pscore; /* player's score */
11extern int cscore; /* comp's score */
12extern int glimit; /* points to win game */
13
14extern int pgames; /* player's games won */
15extern int cgames; /* comp's games won */
16extern int gamecount; /* # games played */
5836528f 17extern int Lastscore[2]; /* previous score for each */
13e793a1
KA
18
19extern BOOLEAN iwon; /* if comp won last */
20extern BOOLEAN explain; /* player mistakes explained */
21extern BOOLEAN rflag; /* if all cuts random */
22extern BOOLEAN quiet; /* if suppress random mess */
5836528f
KA
23extern BOOLEAN Hasread; /* has had chance to read msg */
24extern BOOLEAN playing; /* currently playing game */
13e793a1
KA
25
26extern char expl[]; /* string for explanation */
27