blob: 13fcf7c4490fa9ef6de568329671f0e20d7316aa (
plain)
1
2
3
4
5
6
7
8
9
10
|
#define MAX_CARDSTACK_SIZE 5
#define MAX_CARDHAND_SIZE 10
typedef char card;
typedef card cardstack[5];
typedef card hand[10];
int cardpoints(card c);
int stackpoints(cardstack s);
|