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