author | Lars Hjemli <hjemli@gmail.com> | 2007-01-11 23:00:15 (UTC) |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2007-01-11 23:00:15 (UTC) |
commit | 83a5f35a2724ee60bfd8c5679b98da7008272254 (patch) (side-by-side diff) | |
tree | b530ed30437c963e4e73db433d8a4e9dd9f7e7d6 /cgit.h | |
parent | f98e72684bddb5f746f1d4edf663c70076105c9d (diff) | |
download | cgit-83a5f35a2724ee60bfd8c5679b98da7008272254.zip cgit-83a5f35a2724ee60bfd8c5679b98da7008272254.tar.gz cgit-83a5f35a2724ee60bfd8c5679b98da7008272254.tar.bz2 |
Move cache_prepare() to cgit
This moves some cgit-specific stuff away from cache.c
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
-rw-r--r-- | cgit.h | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -82,17 +82,16 @@ extern void html_hidden(char *name, char *value); extern void html_link_open(char *url, char *title, char *class); extern void html_link_close(void); extern void html_filemode(unsigned short mode); extern int cgit_read_config(const char *filename, configfn fn); extern int cgit_parse_query(char *txt, configfn fn); extern struct commitinfo *cgit_parse_commit(struct commit *commit); -extern void cache_prepare(struct cacheitem *item); extern int cache_lock(struct cacheitem *item); extern int cache_unlock(struct cacheitem *item); extern int cache_cancel_lock(struct cacheitem *item); extern int cache_exist(struct cacheitem *item); extern int cache_expired(struct cacheitem *item); extern char *cgit_repourl(const char *reponame); extern char *cgit_pageurl(const char *reponame, const char *pagename, |