diff options
Diffstat (limited to 'html.c')
| -rw-r--r-- | html.c | 7 | 
1 files changed, 7 insertions, 0 deletions
| @@ -51,6 +51,13 @@ void htmlf(const char *format, ...)  	html(buf);  } +void html_status(int code, int more_headers) +{ +	htmlf("Status: %d\n", code); +	if (!more_headers) +		html("\n"); +} +  void html_txt(char *txt)  {  	char *t = txt; | 
