You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
199 B
C

#include "header.h"
#include "collections/collection.h"
#include <stddef.h>
struct item_type_vtable http_header_itable = {
.size = sizeof(struct http_header),
.free = NULL,
.compare = NULL,
};