From: Mark Lodato Date: Tue, 9 Feb 2010 04:04:41 +0000 (-0500) Subject: html: make all strings 'const char *' X-Git-Url: https://gitweb.ps.run/ps-cgit/commitdiff_plain/8aab27f24de70acfbdcee31c634a4b1facf23b92?hp=8aab27f24de70acfbdcee31c634a4b1facf23b92 html: make all strings 'const char *' None of the html_* functions modify their argument, so they can all be 'const char *' instead of a simple 'char *'. This removes the need to cast (or copy) when trying to print a const string. Signed-off-by: Mark Lodato ---