summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--git.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/git.h b/git.h
index 0c63ee9..768ec9a 100644
--- a/git.h
+++ b/git.h
@@ -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