diff options
Diffstat (limited to 'src/hand.h')
| -rw-r--r-- | src/hand.h | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -5,8 +5,11 @@ #define MAX_HAND_CARDS 10 -typedef card hand[MAX_HAND_CARDS]; +typedef struct +{ + card cards[MAX_HAND_CARDS]; +} hand_t; -void hand_sort(hand h); +void hand_sort(hand_t *h); #endif // OXEN_HAND_H |
