webserver.c/response.c

12 lines
257 B
C

#include "response.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
struct Response response_constructor(char *version, char *status) {
struct Response response;
response.version = version;
response.status = status;
return response;
}