#ifndef HTTP_HEADER_H
#define HTTP_HEADER_H
struct http_header;
struct http_header_limits {
unsigned int max_fields;
};
struct http_header_field {
const char *name;
const char *value;
};
const char *name)
{
}
struct http_header *
const struct http_header_field *
const ARRAY_TYPE(http_header_field) *
const struct http_header_field *
const char *
#endif