12 lines
184 B
C
12 lines
184 B
C
#ifndef RESPONSE_H
|
|
#define RESPONSE_H
|
|
|
|
struct Response {
|
|
char *version;
|
|
char *status;
|
|
};
|
|
|
|
struct Response response_constructor(char *version, char *status);
|
|
|
|
#endif // !RESPONSE_H
|