12 lines
290 B
C
12 lines
290 B
C
/**
|
|
* Copyright (c) 2021 Dominic Masters
|
|
*
|
|
* This software is released under the MIT License.
|
|
* https://opensource.org/licenses/MIT
|
|
*/
|
|
#include "winner.h"
|
|
|
|
void pokerWinnerInit(poker_t *poker) {
|
|
pokerPlayerWinnerDetermine(poker);
|
|
printf("Winner Count %u\n", poker->winnerCount);
|
|
} |