Git fork
1#include "git-compat-util.h"
2#include "packfile.h"
3
4int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size);
5
6int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size)
7{
8 enum object_type type;
9 unsigned long len;
10
11 unpack_object_header_buffer((const unsigned char *)data,
12 (unsigned long)size, &type, &len);
13
14 return 0;
15}