From 86a51cdf0b8c10d02ace7489d0a4683a206e3e7c Mon Sep 17 00:00:00 2001 From: Kevin Worth Date: Fri, 9 Dec 2005 05:51:26 +0000 Subject: [PATCH 1/1] Added ttt_board_make_move --- src/test-board.c | 31 ++++++++++++++++++++++++++++++- 1 file changed, 30 insertions(+), 1 deletion(-) 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); -- 2.43.0