]> git.cworth.org Git - ttt/blob - src/test-board.c
2005-12-02 Richard D. Worth <richard@theworths.org>
[ttt] / src / test-board.c
1 /* Test ttt-board.c */
2
3 #include "ttt-board.h"
4
5 int
6 main (void)
7 {
8     ttt_board_t board;
9
10     ttt_board_init (&board);
11
12     printf ("This is the board \"");
13     ttt_board_write (&board, stdout);
14     printf ("\"\n");
15
16     return 0;
17 }