2008-02-23 22:45:33 +01:00
|
|
|
#ifndef HTML_H
|
|
|
|
#define HTML_H
|
|
|
|
|
|
|
|
extern int htmlfd;
|
|
|
|
|
2008-08-06 10:53:50 +02:00
|
|
|
extern void html_raw(const char *txt, size_t size);
|
2008-02-23 22:45:33 +01:00
|
|
|
extern void html(const char *txt);
|
|
|
|
extern void htmlf(const char *format,...);
|
2008-08-06 22:57:44 +02:00
|
|
|
extern void html_status(int code, const char *msg, int more_headers);
|
2010-02-09 05:04:41 +01:00
|
|
|
extern void html_txt(const char *txt);
|
|
|
|
extern void html_ntxt(int len, const char *txt);
|
|
|
|
extern void html_attr(const char *txt);
|
|
|
|
extern void html_url_path(const char *txt);
|
|
|
|
extern void html_url_arg(const char *txt);
|
|
|
|
extern void html_hidden(const char *name, const char *value);
|
|
|
|
extern void html_option(const char *value, const char *text, const char *selected_value);
|
|
|
|
extern void html_link_open(const char *url, const char *title, const char *class);
|
2008-02-23 22:45:33 +01:00
|
|
|
extern void html_link_close(void);
|
|
|
|
extern void html_fileperm(unsigned short mode);
|
|
|
|
extern int html_include(const char *filename);
|
|
|
|
|
2010-02-09 05:04:41 +01:00
|
|
|
extern int http_parse_querystring(const char *txt, void (*fn)(const char *name, const char *value));
|
2008-04-08 21:11:36 +02:00
|
|
|
|
2008-02-23 22:45:33 +01:00
|
|
|
#endif /* HTML_H */
|