1#include "commit-graph.h"
23
struct commit_graph *parse_commit_graph(void *graph_map, int fd,
4size_t graph_size);
56
int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size);
78
int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size)
9{
10struct commit_graph *g;
1112
g = parse_commit_graph((void *)data, -1, size);
13free(g);
1415
return 0;
16}