From 34f309404ca2ffdefb3bb4292dfb21818de6c193 Mon Sep 17 00:00:00 2001 From: Niklas Elsbrock Date: Sat, 10 Aug 2024 21:08:55 +0200 Subject: [PATCH] remove non-static declaration from header --- tictactoe_game.h | 1 - 1 file changed, 1 deletion(-) 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);