From: Kevin Worth Date: Fri, 9 Dec 2005 05:51:26 +0000 (+0000) Subject: Added ttt_board_make_move X-Git-Url: https://git.cworth.org/git?p=ttt;a=commitdiff_plain;h=86a51cdf0b8c10d02ace7489d0a4683a206e3e7c;hp=5e8532a5e248965f2ff3cfc01e9dcc307fe5825a Added ttt_board_make_move --- diff --git a/src/test-board.c b/src/test-board.c index d36b36d..b5929be 100644 --- a/src/test-board.c +++ b/src/test-board.c @@ -1,13 +1,42 @@ /* Test ttt-board.c */ +#include #include "ttt-board.h" +int ttt_board_make_move (ttt_board_t *board, int move); + +int m; + +int ttt_board_make_move (ttt_board_t *board, int move) +{ + putchar(move); + if (board->cells[m] == '_') + { + board->cells[m] = 'X'; + return(1); + } + else + { + return(0); + } +} + + int main (void) { ttt_board_t board; - + + ttt_board_init (&board); + + printf ("This is the board \""); + ttt_board_write (&board, stdout); + printf ("\"\n"); + + printf ("Make a move"); + m = getchar(); + ttt_board_make_move (&board, m); printf ("This is the board \""); ttt_board_write (&board, stdout);