X-Git-Url: https://git.cworth.org/git?p=ttt;a=blobdiff_plain;f=src%2Ftest-board.c;fp=src%2Ftest-board.c;h=463e1b9eec267a35ef6cf17b8614477d5b5e5a59;hp=abdb01b2f92807d58fe4eb8ea6d5539aa26292be;hb=026b745559a0e7df3422f3e44594519a6d4358a9;hpb=455fff921b278572c9ce0a1cd6c2d80630d21a42 diff --git a/src/test-board.c b/src/test-board.c index abdb01b..463e1b9 100644 --- a/src/test-board.c +++ b/src/test-board.c @@ -2,8 +2,6 @@ #include "ttt-board.h" -ttt_cell_t ttt_test_board_is_won (ttt_board_t *board); - int main (void) { @@ -14,14 +12,12 @@ main (void) for (i = 0; i <= 8; i++) { - printf ("This is the board \""); ttt_board_write (&board, stdout); - printf ("\"\n"); + printf ("\n"); - printf ("Make a move \n"); + printf ("Make a move "); m = getchar(); newline = getchar(); - printf ("getchar returned a numeric value of %d which is character '%c'\n", m, m); m = m - '0'; ttt_board_make_move (&board, m); ttt_board_is_won (&board); @@ -37,10 +33,7 @@ main (void) } } - printf ("This is the board \""); ttt_board_write (&board, stdout); - printf ("\"\n"); - - + printf ("\n"); return 0; }