best makefile
[webserver.git] / http.h
1 #ifndef __HTTP_H__
2 #define __HTTP_H__
3
4 /* type */
5
6 typedef struct {
7 char *root;
8 char *temp;
9 char *servername;
10 char *charset;
11 } conf_t;
12
13 /* functions */
14
15 int processing (char *data, int len, conf_t *conf, char **pdata);
16
17 #endif /* __HTTP_H__ */
18
19 /* vim: set ts=4 sw=4 et: */