blob: c505076f4f5d1ea6b9e2d54205b16f03e1694b97 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef _UHTTPD_CGI_
#include <errno.h>
#include <unistd.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <linux/limits.h>
void uh_cgi_request(
struct client *cl, struct http_request *req, struct uh_path_info *pi
);
#endif
|