Sha256: 539c24a4547e74379d217eb7d09fe6696a1078ef188da0626df5ebe8ab13c200
Contents?: true
Size: 322 Bytes
Versions: 16
Compression:
Stored size: 322 Bytes
Contents
#include <stdint.h> #include <stdlib.h> #include <string.h> #include "http_parser.h" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) { struct http_parser_url u; http_parser_url_init(&u); http_parser_parse_url((char*)data, size, 0, &u); http_parser_parse_url((char*)data, size, 1, &u); return 0; }
Version data entries
16 entries across 16 versions & 1 rubygems