Added a htls program for directory listings.
[ashd.git] / lib / resp.h
1 #ifndef _LIB_HTRESP_H
2 #define _LIB_HTRESP_H
3
4 #include <req.h>
5
6 char *htmlquote(char *text);
7 void simpleerror(int fd, int code, char *msg, char *fmt, ...);
8 void stdredir(struct hthead *req, int fd, int code, char *dst);
9 char *fmthttpdate(time_t time);
10 time_t parsehttpdate(char *date);
11
12 #endif