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