From: Carl Worth Date: Thu, 21 Sep 2006 09:16:28 +0000 (-0700) Subject: Print board before result summary X-Git-Url: https://git.cworth.org/git?p=wordgame;a=commitdiff_plain;h=c10df4f35e24cbe4da8aac8118c28c73c9e51faf Print board before result summary --- diff --git a/grid.c b/grid.c index 97ba7d7..5b57a51 100644 --- a/grid.c +++ b/grid.c @@ -229,7 +229,9 @@ main (void) minutes = remaining / 60; } while (remaining > 0); - printf ("\nWords you found:\n"); + board_print (&board); + + printf ("Words you found:\n"); found = dict_print_by_length_if (&solution, seen_predicate); printf ("\nWords you missed:\n");