Commit | Line | Data |
---|---|---|
d422fdfd FT |
1 | #ifndef _LIB_HTRESP_H |
2 | #define _LIB_HTRESP_H | |
3 | ||
46e66302 FT |
4 | #include <req.h> |
5 | ||
3095582d | 6 | char *urlquote(char *text); |
121d8be9 | 7 | char *htmlquote(char *text); |
d422fdfd | 8 | void simpleerror(int fd, int code, char *msg, char *fmt, ...); |
46e66302 | 9 | void stdredir(struct hthead *req, int fd, int code, char *dst); |
b4164ce6 FT |
10 | char *fmthttpdate(time_t time); |
11 | time_t parsehttpdate(char *date); | |
d422fdfd FT |
12 | |
13 | #endif |