diff --git a/tictactoe_game.h b/tictactoe_game.h index 7f5d7d6..d3cab1b 100644 --- a/tictactoe_game.h +++ b/tictactoe_game.h @@ -10,7 +10,6 @@ typedef struct tictactoe_game { } ttt_game_t; int tictactoe_game_init(ttt_game_t *game); -char tictactoe_game_check_winner(ttt_game_t *game); int tictactoe_game_make_turn(ttt_game_t *game, size_t x, size_t y); int tictactoe_game_snprint(ttt_game_t *game, char *buf, size_t len);