remove unnecessary return value of tictactoe_game_init

This commit is contained in:
2025-04-29 20:26:38 +02:00
parent ebaf64982d
commit 504c950c15
3 changed files with 3 additions and 10 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ typedef struct tictactoe_game {
char board[3][3];
} ttt_game_t;
int tictactoe_game_init(ttt_game_t *game);
void tictactoe_game_init(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);