#ifndef RESPONSE_H #define RESPONSE_H struct Response { char *version; char *status; }; struct Response response_constructor(char *version, char *status); #endif // !RESPONSE_H