#ifndef HTTP_HEADER_PARSER_H
#define HTTP_HEADER_PARSER_H
struct http_header_limits;
struct http_header_parser;
enum http_header_parse_flags {
/* Strictly adhere to the HTTP protocol specification */
};
struct http_header_parser *
const struct http_header_limits *limits,
enum http_header_parse_flags flags);
const char **error_r);
#endif