diff-files --raw: show correct post-image of intent-to-add files
[git] / fuzz-pack-headers.c
1 #include "packfile.h"
2
3 int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size);
4
5 int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size)
6 {
7         enum object_type type;
8         unsigned long len;
9
10         unpack_object_header_buffer((const unsigned char *)data,
11                                     (unsigned long)size, &type, &len);
12
13         return 0;
14 }