Unidiff1 files changed, 2 insertions, 1 deletions
|
diff --git a/html.h b/html.h index 2bde28d..3c32935 100644 --- a/ html.h+++ b/ html.h |
|
@@ -2,11 +2,12 @@ |
2 | #define HTML_H |
2 | #define HTML_H |
3 | |
3 | |
4 | extern int htmlfd; |
4 | extern int htmlfd; |
5 | |
5 | |
| |
6 | extern void html_raw(const char *txt, size_t size); |
6 | extern void html(const char *txt); |
7 | extern void html(const char *txt); |
7 | extern void htmlf(const char *format,...); |
8 | extern void htmlf(const char *format,...); |
8 | extern void html_status(int code, int more_headers); |
9 | extern void html_status(int code, const char *msg, int more_headers); |
9 | extern void html_txt(char *txt); |
10 | extern void html_txt(char *txt); |
10 | extern void html_ntxt(int len, char *txt); |
11 | extern void html_ntxt(int len, char *txt); |
11 | extern void html_attr(char *txt); |
12 | extern void html_attr(char *txt); |
12 | extern void html_hidden(char *name, char *value); |
13 | extern void html_hidden(char *name, char *value); |
|