#ifndef GIT_H #define GIT_H #include typedef struct git_repo git_repo; struct git_repo { git_repo *next; git_repository *repo; }; #endif