Unidiff1 files changed, 2 insertions, 2 deletions
|
diff --git a/html.c b/html.c index 83fc7a9..36e9a2f 100644 --- a/ html.c+++ b/ html.c |
|
@@ -43,35 +43,35 @@ void html_raw(const char *data, size_t size) |
43 | void html(const char *txt) |
43 | void html(const char *txt) |
44 | { |
44 | { |
45 | write(htmlfd, txt, strlen(txt)); |
45 | write(htmlfd, txt, strlen(txt)); |
46 | } |
46 | } |
47 | |
47 | |
48 | void htmlf(const char *format, ...) |
48 | void htmlf(const char *format, ...) |
49 | { |
49 | { |
50 | static char buf[65536]; |
50 | static char buf[65536]; |
51 | va_list args; |
51 | va_list args; |
52 | |
52 | |
53 | va_start(args, format); |
53 | va_start(args, format); |
54 | vsnprintf(buf, sizeof(buf), format, args); |
54 | vsnprintf(buf, sizeof(buf), format, args); |
55 | va_end(args); |
55 | va_end(args); |
56 | html(buf); |
56 | html(buf); |
57 | } |
57 | } |
58 | |
58 | |
59 | void html_status(int code, int more_headers) |
59 | void html_status(int code, const char *msg, int more_headers) |
60 | { |
60 | { |
61 | htmlf("Status: %d\n", code); |
61 | htmlf("Status: %d %s\n", code, msg); |
62 | if (!more_headers) |
62 | if (!more_headers) |
63 | html("\n"); |
63 | html("\n"); |
64 | } |
64 | } |
65 | |
65 | |
66 | void html_txt(char *txt) |
66 | void html_txt(char *txt) |
67 | { |
67 | { |
68 | char *t = txt; |
68 | char *t = txt; |
69 | while(t && *t){ |
69 | while(t && *t){ |
70 | int c = *t; |
70 | int c = *t; |
71 | if (c=='<' || c=='>' || c=='&') { |
71 | if (c=='<' || c=='>' || c=='&') { |
72 | write(htmlfd, txt, t - txt); |
72 | write(htmlfd, txt, t - txt); |
73 | if (c=='>') |
73 | if (c=='>') |
74 | html(">"); |
74 | html(">"); |
75 | else if (c=='<') |
75 | else if (c=='<') |
76 | html("<"); |
76 | html("<"); |
77 | else if (c=='&') |
77 | else if (c=='&') |
|