Unidiff1 files changed, 1 insertions, 0 deletions
|
diff --git a/cgit.h b/cgit.h index 3938633..5c55bec 100644 --- a/ cgit.h+++ b/ cgit.h |
|
@@ -59,24 +59,25 @@ struct cacheitem { |
59 | int fd; |
59 | int fd; |
60 | }; |
60 | }; |
61 | |
61 | |
62 | struct repoinfo { |
62 | struct repoinfo { |
63 | char *url; |
63 | char *url; |
64 | char *name; |
64 | char *name; |
65 | char *path; |
65 | char *path; |
66 | char *desc; |
66 | char *desc; |
67 | char *owner; |
67 | char *owner; |
68 | char *defbranch; |
68 | char *defbranch; |
69 | char *group; |
69 | char *group; |
70 | char *module_link; |
70 | char *module_link; |
| |
71 | char *readme; |
71 | int snapshots; |
72 | int snapshots; |
72 | int enable_log_filecount; |
73 | int enable_log_filecount; |
73 | int enable_log_linecount; |
74 | int enable_log_linecount; |
74 | }; |
75 | }; |
75 | |
76 | |
76 | struct repolist { |
77 | struct repolist { |
77 | int length; |
78 | int length; |
78 | int count; |
79 | int count; |
79 | struct repoinfo *repos; |
80 | struct repoinfo *repos; |
80 | }; |
81 | }; |
81 | |
82 | |
82 | struct commitinfo { |
83 | struct commitinfo { |
|