lib: Made simpleerror callable with stdio handles as well as FDs.
[ashd.git] / lib / resp.h
CommitLineData
d422fdfd
FT
1#ifndef _LIB_HTRESP_H
2#define _LIB_HTRESP_H
3
b008ba9e 4#include "req.h"
46e66302 5
3095582d 6char *urlquote(char *text);
121d8be9 7char *htmlquote(char *text);
d422fdfd 8void simpleerror(int fd, int code, char *msg, char *fmt, ...);
65e8a9a0 9void simpleerror2(FILE *out, int code, char *msg, char *fmt, ...);
46e66302 10void stdredir(struct hthead *req, int fd, int code, char *dst);
b4164ce6
FT
11char *fmthttpdate(time_t time);
12time_t parsehttpdate(char *date);
d422fdfd
FT
13
14#endif