author | Lars Hjemli <hjemli@gmail.com> | 2008-04-08 19:11:36 (UTC) |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2008-04-08 19:11:36 (UTC) |
commit | e87e89633383b8b75c68c98be3e0c14212109de2 (patch) (unidiff) | |
tree | f57e131ab854b58023387aee8efc0e4ee54653b5 /html.h | |
parent | 20a33548b9a87a6eb23162ee5d137daa46d78613 (diff) | |
download | cgit-e87e89633383b8b75c68c98be3e0c14212109de2.zip cgit-e87e89633383b8b75c68c98be3e0c14212109de2.tar.gz cgit-e87e89633383b8b75c68c98be3e0c14212109de2.tar.bz2 |
Move cgit_parse_query() from parsing.c to html.c as http_parse_querystring()
This is a generic http-function.
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
-rw-r--r-- | html.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -1,18 +1,20 @@ | |||
1 | #ifndef HTML_H | 1 | #ifndef HTML_H |
2 | #define HTML_H | 2 | #define HTML_H |
3 | 3 | ||
4 | extern int htmlfd; | 4 | extern int htmlfd; |
5 | 5 | ||
6 | extern void html(const char *txt); | 6 | extern void html(const char *txt); |
7 | extern void htmlf(const char *format,...); | 7 | extern void htmlf(const char *format,...); |
8 | extern void html_txt(char *txt); | 8 | extern void html_txt(char *txt); |
9 | extern void html_ntxt(int len, char *txt); | 9 | 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 */ |