9e56c3876f2654fc1b515ffbf93e953e2c7e7515
[project/luci.git] / contrib / package / uhttpd / src / uhttpd-file.h
1 #ifndef _UHTTPD_CGI_
2
3 #include <fcntl.h>
4 #include <time.h>
5 #include <strings.h>
6 #include <dirent.h>
7 #include <sys/stat.h>
8 #include <sys/types.h>
9 #include <linux/limits.h>
10
11 struct mimetype {
12         const char *extn;
13         const char *mime;
14 };
15
16 void uh_file_request(struct client *cl, struct http_request *req);
17
18 #endif