blob: ee39eae22e87fdd47bc3faf378294c737c19d314 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef _H_FILE
#define _H_FILE
#include <stddef.h>
#include "http.h"
int file_handle_request(struct http_request *, int);
int file_read(const char *, int);
int file_read_cgi(const char *, int);
#endif
|