about summary refs log tree commit diff stats
path: root/cgit.h
diff options
context:
space:
mode:
Diffstat (limited to 'cgit.h')
-rw-r--r--cgit.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/cgit.h b/cgit.h index caa9d8e..bad66f0 100644 --- a/cgit.h +++ b/cgit.h
@@ -165,6 +165,7 @@ struct cgit_config {
165 char *agefile; 165 char *agefile;
166 char *cache_root; 166 char *cache_root;
167 char *clone_prefix; 167 char *clone_prefix;
168 char *clone_url;
168 char *css; 169 char *css;
169 char *favicon; 170 char *favicon;
170 char *footer; 171 char *footer;
@@ -319,9 +320,11 @@ extern const char *cgit_repobasename(const char *reponame);
319 320
320extern int cgit_parse_snapshots_mask(const char *str); 321extern int cgit_parse_snapshots_mask(const char *str);
321 322
322extern int cgit_open_filter(struct cgit_filter *filter, struct cgit_repo * repo); 323extern int cgit_open_filter(struct cgit_filter *filter);
323extern int cgit_close_filter(struct cgit_filter *filter); 324extern int cgit_close_filter(struct cgit_filter *filter);
324 325
326extern void cgit_prepare_repo_env(struct cgit_repo * repo);
327
325extern int readfile(const char *path, char **buf, size_t *size); 328extern int readfile(const char *path, char **buf, size_t *size);
326 329
327extern char *expand_macros(const char *txt); 330extern char *expand_macros(const char *txt);