X-Git-Url: https://git.cworth.org/git?p=ttt;a=blobdiff_plain;f=src%2Fttt-board.c;h=7627b4d699e3ab5be18267bb21cffb223bcd1f64;hp=9e9db9889394a5b719aa1cba68a8b92abf66ec30;hb=ded32923a25488449be27687013845d7fa0e9e5e;hpb=cce891bb05118330ca609ac989491ad8a2fa7f71 diff --git a/src/ttt-board.c b/src/ttt-board.c index 9e9db98..7627b4d 100644 --- a/src/ttt-board.c +++ b/src/ttt-board.c @@ -25,7 +25,11 @@ void ttt_board_init (ttt_board_t *board) { - /* XXX: NYI */ + int i; + for (i = 0; i < TTT_BOARD_MAX_CELLS; i++) + { + board->cells[i] = 0; + } } /* Initialize a board from its string representation. @@ -51,6 +55,7 @@ char * ttt_board_to_string (ttt_board_t *board) { /* XXX: NYI */ + return NULL; } /* Write a string representation of a board to the provided file.