diff options
Diffstat (limited to '')
-rw-r--r-- | cgit.h | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/cgit.h b/cgit.h index a3b5385..2a3cd5a 100644 --- a/cgit.h +++ b/cgit.h @@ -15,6 +15,20 @@ struct cacheitem { int fd; }; +struct repoinfo { + char *url; + char *name; + char *path; + char *desc; + char *owner; +}; + +struct repolist { + int length; + int count; + struct repoinfo *repos; +}; + struct commitinfo { struct commit *commit; char *author; @@ -36,7 +50,9 @@ struct taginfo { extern const char cgit_version[]; -extern char *cgit_root; +extern struct repolist cgit_repolist; +extern struct repoinfo *cgit_repo; + extern char *cgit_root_title; extern char *cgit_css; extern char *cgit_logo; |