home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Usenet 1994 October
/
usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso
/
games
/
volume6
/
bj2
/
bj.h
< prev
next >
Wrap
C/C++ Source or Header
|
1989-07-06
|
744b
|
38 lines
/* bj.h */
/*
B.J. - Las Vegas Blackjack, Version 1.0
by Nathan Glasser
nathan@brokaw.lcs.mit.edu (internet)
nathan@mit-eddie.uucp (usenet)
April, 1989
------------------------------------------------------------------------------
Copyright 1989 by Nathan Glasser.
You may feel free to distribute this program in its current form.
Please do not remove this copyright information.
*/
#include <stdio.h>
#include <ctype.h>
#ifdef MSDOS
#include <stdlib.h>
#endif
#define NUM_SUITS 4
#define NUM_RANKS 13
typedef struct {
char bj_val;
char display_char;
} CARDINFO;
typedef int CARD;
extern CARDINFO cardinfo[];
extern CARD *deck;
extern CARD *cardptr;
extern int num_decks,reshuffle_percentage,show_burn,show_pct;