]> git.cworth.org Git - ttt/blobdiff - src/ttt-board.c
2005-11-28 kevin worth <kevin@theworths.org>
[ttt] / src / ttt-board.c
index 582b85fd6469e7cbcc1d460eb02dc50ef51684b6..27fb19ee939e82df9921bf173b949135b90c98b4 100644 (file)
 
 #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.