mirror of
https://github.com/opus-tango/http-server-in-c.git
synced 2026-03-20 12:05:25 +00:00
13 lines
257 B
C
13 lines
257 B
C
#ifndef REQUEST_HANDLER_H
|
|
#define REQUEST_HANDLER_H
|
|
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <sys/types.h>
|
|
|
|
#include "http_stuff.h"
|
|
|
|
void handle_request(char* request, int length, char* response,
|
|
size_t* response_length);
|
|
|
|
#endif |