diff options
author | Lars Hjemli <hjemli@gmail.com> | 2008-04-08 21:11:36 +0200 |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2008-04-08 21:11:36 +0200 |
commit | e87e89633383b8b75c68c98be3e0c14212109de2 (patch) | |
tree | f57e131ab854b58023387aee8efc0e4ee54653b5 /html.h | |
parent | Move function for configfile parsing into configfile.[ch] (diff) | |
download | cgit-pink-e87e89633383b8b75c68c98be3e0c14212109de2.tar.gz cgit-pink-e87e89633383b8b75c68c98be3e0c14212109de2.zip |
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>
Diffstat (limited to '')
-rw-r--r-- | html.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/html.h b/html.h index 63f4551..e6fdc54 100644 --- a/html.h +++ b/html.h @@ -15,4 +15,6 @@ extern void html_link_close(void); extern void html_fileperm(unsigned short mode); extern int html_include(const char *filename); +extern int http_parse_querystring(char *txt, void (*fn)(const char *name, const char *value)); + #endif /* HTML_H */ |