void distributeCards(PlayingCard[], Player *[], PlayingCard *[], const GameRuleSet *)
Distributes random playing cards to players' hands and selects community cards.
Definition dealer.c:100
void buildDeck(PlayingCard[], bool)
Builds a deck of playing cards containing 4 suits & 13 cards for each suit.
Definition dealer.c:16
int decideWinners(Player *[], int, int *)
Compares the scores of all players on the same tier (scores array index). Populates the winners array...
Definition dealer.c:43
void scorePlayersHand(Player *, const PlayingCard *[], int)
Analyzes Player's hand using functions inside handranking.c and saves scores in Player....
Definition dealer.c:173
Contains the GameRuleSet struct and functions related to its initialization through console prompts.
Contains the logic of a poker game in a form of DI'able functions. See their arrangement and implemen...
Contains a Player struct and related functions.
Contains functions, constants and structs related to PlayingCards.
Represents a set of customizable rules of the poker game.
Definition gamerules.h:29
Represents a single player.
Definition player.h:17
Represents a single playing card.
Definition playingcard.h:53