1#include "commit-graph.h"
2#include "repository.h"
34
struct commit_graph *parse_commit_graph(void *graph_map, int fd,
5size_t graph_size);
67
int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size);
89
int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size)
10{
11struct commit_graph *g;
1213
initialize_the_repository();
14g = parse_commit_graph((void *)data, -1, size);
15repo_clear(the_repository);
16free(g);
1718
return 0;
19}