int detectPair(PlayingCard *[], int)
Detects if the given card set would result in a Pair.
Definition handranking.c:497
int detectHighCard(PlayingCard *[], int)
Calculates players' High Card score.
Definition handranking.c:557
int detectFlush(PlayingCard *[], int)
Detects if the given card set would result in a Flush.
Definition handranking.c:271
int detectFOaK(PlayingCard *[], int)
Detects if the given card set would result in a Four Of a Kind.
Definition handranking.c:182
int detectRoyalFlush(PlayingCard *[], int)
Detects if the given card set would result in a Royal Flush.
Definition handranking.c:23
int detectStraightFlush(PlayingCard *[], int)
Detects if the given card set would result in a Straight Flush.
Definition handranking.c:86
int detectFullHouse(PlayingCard *[], int)
Detects if the given card set would result in a Full House.
Definition handranking.c:226
int detectStraight(PlayingCard *[], int)
Detects if the given card set would result in a Straight.
Definition handranking.c:352
void sortCardsInDescOrder(PlayingCard *[], int)
Sorts the elements of the given array to be sorted in descending order of card values.
Definition handranking.c:617
int detectTOaK(PlayingCard *[], int)
Detects if the given card set would result in a Three Of a Kind.
Definition handranking.c:403
int detectTwoPair(PlayingCard *[], int)
Detects if the given card set would result in a Two Pair.
Definition handranking.c:437
int countPipsInCards(enum Pip[], int[], PlayingCard *[], int)
Takes a deck of cards and counts the amounts of each pip in the deck.
Definition handranking.c:582
Contains a Player struct and related functions.
Pip
Represents the amount of symbols on a card and more importantly, its value amongst other cards.
Definition playingcard.h:36
Represents a single playing card.
Definition playingcard.h:53