12#define PIPS_PER_SUIT 13
16#define DECK_LENGTH (4 * 13)
18#define CARDNAME_MAX_LENGTH (5 + 4 + 8 + 1)
20#define CARDS_PER_PLAYER 2
22#define COMM_CARDS_COUNT 5
const char * getSuitName(enum Suit)
Returns a string literal containing the name of the given Suit enumerator.
Definition playingcard.c:35
Pip
Represents the amount of symbols on a card and more importantly, its value amongst other cards.
Definition playingcard.h:36
void getCardName(PlayingCard *, char *, int)
Populates a char array with the card's name.
Definition playingcard.c:53
const char * getPipName(enum Pip)
Returns a string literal containing the name of the given Pip enumerator.
Definition playingcard.c:11
Suit
Represents a symbol in a card deck.
Definition playingcard.h:25
Represents a single playing card.
Definition playingcard.h:53
enum Suit suit
The card's symbol.
Definition playingcard.h:55
enum Pip pips
The amount of symbols on a card.
Definition playingcard.h:57