1 #include "commit-graph.h"
2 #include "repository.h"
4 struct commit_graph *parse_commit_graph(void *graph_map, int fd,
7 int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size);
9 int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size)
11 struct commit_graph *g;
13 initialize_the_repository();
14 g = parse_commit_graph((void *)data, -1, size);
15 repo_clear(the_repository);