#ifndef HTTP_RESPONSE_H
#define HTTP_RESPONSE_H
#include "array.h"
#include "http-header.h"
enum http_response_payload_type {
};
struct http_response {
unsigned char version_major;
unsigned char version_minor;
unsigned int status;
const char *reason;
const char *location;
};
void
static inline const struct http_header_field *
{
return NULL;
}
static inline const char *
{
return NULL;
}
static inline const ARRAY_TYPE(http_header_field) *
{
return NULL;
}
static inline const char *
{
}
const char *option);
#endif