X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=src%2Fttt-board.c;h=27fb19ee939e82df9921bf173b949135b90c98b4;hb=add37ecc4ee6485d9f91f95f1c983abf867da2c6;hp=582b85fd6469e7cbcc1d460eb02dc50ef51684b6;hpb=ad9f96f734bb560c25ceca4facc85a84f4c3993f;p=ttt diff --git a/src/ttt-board.c b/src/ttt-board.c index 582b85f..27fb19e 100644 --- a/src/ttt-board.c +++ b/src/ttt-board.c @@ -21,6 +21,10 @@ #include "ttt-board.h" +struct _ttt_board { + int cells[TTT_BOARD_MAX_CELLS]; +}; + /* Initialize an empty board. */ void ttt_board_init (ttt_board_t *board) @@ -55,6 +59,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.