Assorted char * -> const char * API changes.

I went through all the char * parameters and return values I could see
in puzzles.h by eye and spotted ones that surely ought to have been
const all along.
This commit is contained in:
Simon Tatham
2017-10-01 14:04:47 +01:00
parent b3243d7504
commit 3276376d1b
16 changed files with 83 additions and 65 deletions

View File

@ -2039,7 +2039,7 @@ const char *quis = NULL;
#if 0 /* currently unused */
static void debug_printf(char *fmt, ...)
static void debug_printf(const char *fmt, ...)
{
char buf[4096];
va_list ap;