From 1a6d0ab964c6ed1dd6ae9d87f812ad740bb68d4a Mon Sep 17 00:00:00 2001 From: Thomas Battermann Date: Sun, 4 Mar 2012 18:03:35 +0100 Subject: [PATCH] Added caption in html-output --- html.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/html.c b/html.c index 5197ad8..6a34622 100644 --- a/html.c +++ b/html.c @@ -36,11 +36,12 @@ void printHead(FILE * fp) { fprintf(fp,"\n"); fprintf(fp,"\n"); fprintf(fp," \n"); + fprintf(fp," "); fprintf(fp," Sudoku (solved)\n"); fprintf(fp," \n"); fprintf(fp," \n"); fprintf(fp," \n"); @@ -49,6 +50,9 @@ void printHead(FILE * fp) { void printFoot(FILE * fp) { fprintf(fp," \n"); + fprintf(fp,"

\n"); + fprintf(fp," Given Values - Values found by backtracking\n"); + fprintf(fp,"

\n"); fprintf(fp," \n"); fprintf(fp,"\n"); }