/* BJ.H        Include file for Blackjack
 */

/* Defined types
 */
#define  CASH long      /* dollars */

/* Defined constants
 */
#define  DEALER   0     /* which hand is dealer; not modifiable */
#define  NONE     0     /* no reply */
#define  DBLDN    1     /* reply: double down */
#define  SPLIT    2     /* reply: split pair */
#define  INSUR    3     /* takes: insurance */
#define  HIT      4     /* takes: hit */
#define  CASHIN   "%ld" /* input format for CASH data */
#define  CASHOUT  "%ld" /* output format for CASH data */

