X-Git-Url: https://git.cworth.org/git?p=ttt;a=blobdiff_plain;f=src%2Ftest-board.c;h=d4abb29be4df89d64f40ac86f1a5c71dee8e342f;hp=b5929be97c39cc2000d1407f5c035923a365a3e4;hb=64c557a29553e0d4235f95e10bb943533aa70b02;hpb=86a51cdf0b8c10d02ace7489d0a4683a206e3e7c diff --git a/src/test-board.c b/src/test-board.c index b5929be..d4abb29 100644 --- a/src/test-board.c +++ b/src/test-board.c @@ -1,32 +1,12 @@ /* 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; - + int m; ttt_board_init (&board); @@ -35,7 +15,7 @@ main (void) printf ("\"\n"); printf ("Make a move"); - m = getchar(); + m = getchar() - '0'; ttt_board_make_move (&board, m); printf ("This is the board \"");