#ifndef HTTP_RESPONSE_H #define HTTP_RESPONSE_H #include "http_content_type.h" #include "http_status.h" #include #include typedef struct { HttpStatus status_code; HttpContentType content_type; size_t content_length; char *body; } HttpResponse; bool construct_response(HttpResponse __res, char *out); #endif