|
DataMuseum.dkPresents historical artifacts from the history of: DKUUG/EUUG Conference tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about DKUUG/EUUG Conference tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - downloadIndex: T g
Length: 1014 (0x3f6) Types: TextFile Names: »globs.c«
└─⟦b20c6495f⟧ Bits:30007238 EUUGD18: Wien-båndet, efterår 1987 └─⟦this⟧ »EUUGD18/General/Nobs/globs.c«
/* * globs - global variables. */ #include "defs.h" short count; CARD crib[6]; CARD cut; int dealer; int (*dscfunc[2])(); char gameover; CARD go[8]; short gocount; CARD hand[2][6]; char handover; short hflag = 0; short ncrib; short nleft[2]; CARD pack[52]; int packmade = 0; short peg[2][2]; char played[2][4]; PLAYER playertype[2]; char quitflag; short score[2]; short whosego; char whoseturn; char *drunname[3] = {"Sequence","Double Sequence", "Quadruple Sequence"}; short drunval[3] = {3, 8, 16}; char *pairname[5] = {"0","0","Pair","Pair Royal","Double Pair Royal"}; short pairvalue[5] = {0,0,2,6,12}; char *rankname[14] = {"0", "Ace","Deuce","Trey","Four", "Five","Six","Seven","Eight","Nine","Ten", "Knave","Queen","King"}; char *rankrdr[14] = {"0", "A", "2","3","4","5","6","7","8","9","10","J","Q","K"}; short rankvalue[14] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 10, 10, 10}; char *suitname[5] = {"Clubs", "Diamonds", "Hearts", "Spades", "Cabbages"}; char *suitrdr[5] = {"c","d","h","s","x"};