DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download
Index: T b

⟦4fd3f4fa5⟧ TextFile

    Length: 744 (0x2e8)
    Types: TextFile
    Names: »bj.h«

Derivation

└─⟦b20c6495f⟧ Bits:30007238 EUUGD18: Wien-båndet, efterår 1987
    └─⟦this⟧ »EUUGD18/General/Bj2/bj.h« 

TextFile

/* 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;