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