]> git.cworth.org Git - ttt/blobdiff - src/test-board.c
2005-11-28 Kevin Worth <kevin@theworths.org>
[ttt] / src / test-board.c
diff --git a/src/test-board.c b/src/test-board.c
new file mode 100644 (file)
index 0000000..d36b36d
--- /dev/null
@@ -0,0 +1,17 @@
+/* Test ttt-board.c */
+
+#include "ttt-board.h"
+
+int
+main (void)
+{
+    ttt_board_t board;
+
+    ttt_board_init (&board);
+
+    printf ("This is the board \"");
+    ttt_board_write (&board, stdout);
+    printf ("\"\n");
+
+    return 0;
+}