diff options
| -rw-r--r-- | git.h | 9 | 
1 files changed, 9 insertions, 0 deletions
| @@ -1,4 +1,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 | 
