Unidiff1 files changed, 2 insertions, 0 deletions
|
diff --git a/html.h b/html.h index 63f4551..e6fdc54 100644 --- a/ html.h+++ b/ html.h |
|
@@ -10,9 +10,11 @@ extern void html_ntxt(int len, char *txt); |
10 | extern void html_attr(char *txt); |
10 | extern void html_attr(char *txt); |
11 | extern void html_hidden(char *name, char *value); |
11 | extern void html_hidden(char *name, char *value); |
12 | extern void html_option(char *value, char *text, char *selected_value); |
12 | extern void html_option(char *value, char *text, char *selected_value); |
13 | extern void html_link_open(char *url, char *title, char *class); |
13 | extern void html_link_open(char *url, char *title, char *class); |
14 | extern void html_link_close(void); |
14 | extern void html_link_close(void); |
15 | extern void html_fileperm(unsigned short mode); |
15 | extern void html_fileperm(unsigned short mode); |
16 | extern int html_include(const char *filename); |
16 | extern int html_include(const char *filename); |
17 | |
17 | |
| |
18 | extern int http_parse_querystring(char *txt, void (*fn)(const char *name, const char *value)); |
| |
19 | |
18 | #endif /* HTML_H */ |
20 | #endif /* HTML_H */ |
|