mirror of
https://github.com/nelsbrock/dev-tictactoe.git
synced 2026-08-14 20:56:49 +02:00
remove unnecessary return value of tictactoe_game_init
This commit is contained in:
+1
-1
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user