diff options
| author | mrb0nk500 <b0nk@b0nk.xyz> | 2021-06-13 15:22:20 -0400 |
|---|---|---|
| committer | mrb0nk500 <b0nk@b0nk.xyz> | 2021-06-13 15:22:20 -0400 |
| commit | 4ac6ebfa301c6a6eff1b2c27cd6539c25f3d529a (patch) | |
| tree | 18f9b5b740eea811a8462b63bd4db6f119455f7d | |
| parent | a1b9d509f076172c5e71ba67f3492bed856cf573 (diff) | |
Added the `git_repo` struct.
This is a linked list, that will be temporarily be
used by `init_git()`.
| -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 |
