11 ttt_board_init (&board);
13 for (i = 0; i <= 8; i++)
15 printf ("This is the board \"");
16 ttt_board_write (&board, stdout);
19 printf ("Make a move \n");
22 printf ("getchar returned a numeric value of %d which is character '%c'\n", m, m);
24 ttt_board_make_move (&board, m);
27 printf ("This is the board \"");
28 ttt_board_write (&board, stdout);