Added Full House

This commit is contained in:
2021-06-23 09:42:13 -07:00
parent d632662520
commit 127257cf99
9 changed files with 132 additions and 45 deletions

View File

@ -76,10 +76,10 @@
////////////////////////////////////////////////////////////////////////////////
// Suits
////////////////////////////////////////////////////////////////////////////////
#define CARD_SUIT_CLUBS 0x0D
#define CARD_SUIT_DIAMONDS 0x1A
#define CARD_SUIT_HEARTS 0x27
#define CARD_SUIT_SPADES 0x34
#define CARD_SUIT_CLUBS 0x00
#define CARD_SUIT_DIAMONDS 0x01
#define CARD_SUIT_HEARTS 0x02
#define CARD_SUIT_SPADES 0x03
////////////////////////////////////////////////////////////////////////////////
// Card numbers
@ -101,6 +101,9 @@
/** Count of cards in each suit */
#define CARD_COUNT_PER_SUIT 13
/** Count of suits */
#define CARD_SUIT_COUNT 4
/** Standard Card Deck Size */
#define CARD_DECK_SIZE 52

View File

@ -15,4 +15,4 @@
* @param right The right element in the array.
* @return -1 for Left priority, 1 for Right and 0 for Equal.
*/
typedef int32_t *arraysort_t(void const*, void const*);
typedef int32_t *arraysort_t(void*, void*);