]> git.cworth.org Git - ttt/blobdiff - src/test-board.c
Moved ttt_board_make_move to ttt-board.c with comment added and prototype in ttt...
[ttt] / src / test-board.c
index dad0a5ed7af486042e58075fc6a76e242c39f245..d4abb29be4df89d64f40ac86f1a5c71dee8e342f 100644 (file)
@@ -1,26 +1,7 @@
 /* Test ttt-board.c */
 
-#include <stdio.h>                   
 #include "ttt-board.h"
 
-int ttt_board_make_move (ttt_board_t *board, int move);
-
-int ttt_board_make_move (ttt_board_t *board, int move)
-{                                    
-    
-    putchar(move);
-    if (board->cells[move] == '_')
-    {
-       board->cells[move] = 'X';
-       return(1);
-    }
-    else
-    {
-       return(0);
-    }
-}
-                                  
-
 int
 main (void)
 {