summaryrefslogtreecommitdiff
path: root/git.h
blob: 768ec9aec9fdf04d3f23e434855f22d6d69ee545 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef GIT_H
#define GIT_H

#include <stdint.h>

typedef struct git_repo git_repo;

struct git_repo {
	git_repo *next;
	git_repository *repo;
};

#endif