From 4ac6ebfa301c6a6eff1b2c27cd6539c25f3d529a Mon Sep 17 00:00:00 2001 From: mrb0nk500 Date: Sun, 13 Jun 2021 15:22:20 -0400 Subject: Added the `git_repo` struct. This is a linked list, that will be temporarily be used by `init_git()`. --- git.h | 9 +++++++++ 1 file changed, 9 insertions(+) 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 + +typedef struct git_repo git_repo; + +struct git_repo { + git_repo *next; + git_repository *repo; +}; + #endif -- cgit v1.2.3-13-gbd6f