]> git.cworth.org Git - ttt/blobdiff - src/ttt-board.c
2005-11-28 Kevin Worth <kevin@theworths.org>
[ttt] / src / ttt-board.c
index 9a8d719f95e9a173bc76cfd14d93c1832008a195..dd068b5850285110f84e5436f2fa99c960b2910d 100644 (file)
 void
 ttt_board_init (ttt_board_t *board)
 {
-       for (int i; i < TTT_BOARD_MAX_CELLS; i++)
-       {
-               &board->cells[i] = 0;
-       }
+    int i;
+    for (i = 0; i < TTT_BOARD_MAX_CELLS; i++)
+    {
+       board->cells[i] = TTT_CELL_EMPTY;
+    }
 }
 
 /* Initialize a board from its string representation.
@@ -53,7 +54,15 @@ ttt_board_init_from_string (ttt_board_t *board,
 char *
 ttt_board_to_string (ttt_board_t *board)
 {
-    /* XXX: NYI */
+    char *s;
+    xasprintf (&s, "\r\n" 
+              "%c|%c|%c\r\n"
+              "%c|%c|%c\r\n"
+              "%c|%c|%c",
+              board->cells[0], board->cells[1], board->cells[2], 
+              board->cells[3], board->cells[4], board->cells[5], 
+              board->cells[6], board->cells[7], board->cells[8]); 
+    return s;
 }
 
 /* Write a string representation of a board to the provided file.