|
diff --git a/cgit.h b/cgit.h index eb8f08c..f915c86 100644 --- a/ cgit.h+++ b/ cgit.h |
|
@@ -82,17 +82,16 @@ extern void html_hidden(char *name, char *value); |
82 | extern void html_link_open(char *url, char *title, char *class); |
82 | extern void html_link_open(char *url, char *title, char *class); |
83 | extern void html_link_close(void); |
83 | extern void html_link_close(void); |
84 | extern void html_filemode(unsigned short mode); |
84 | extern void html_filemode(unsigned short mode); |
85 | |
85 | |
86 | extern int cgit_read_config(const char *filename, configfn fn); |
86 | extern int cgit_read_config(const char *filename, configfn fn); |
87 | extern int cgit_parse_query(char *txt, configfn fn); |
87 | extern int cgit_parse_query(char *txt, configfn fn); |
88 | extern struct commitinfo *cgit_parse_commit(struct commit *commit); |
88 | extern struct commitinfo *cgit_parse_commit(struct commit *commit); |
89 | |
89 | |
90 | extern void cache_prepare(struct cacheitem *item); |
| |
91 | extern int cache_lock(struct cacheitem *item); |
90 | extern int cache_lock(struct cacheitem *item); |
92 | extern int cache_unlock(struct cacheitem *item); |
91 | extern int cache_unlock(struct cacheitem *item); |
93 | extern int cache_cancel_lock(struct cacheitem *item); |
92 | extern int cache_cancel_lock(struct cacheitem *item); |
94 | extern int cache_exist(struct cacheitem *item); |
93 | extern int cache_exist(struct cacheitem *item); |
95 | extern int cache_expired(struct cacheitem *item); |
94 | extern int cache_expired(struct cacheitem *item); |
96 | |
95 | |
97 | extern char *cgit_repourl(const char *reponame); |
96 | extern char *cgit_repourl(const char *reponame); |
98 | extern char *cgit_pageurl(const char *reponame, const char *pagename, |
97 | extern char *cgit_pageurl(const char *reponame, const char *pagename, |
|