|
diff --git a/cgit.h b/cgit.h index e3d9cb8..5ef0bc5 100644 --- a/ cgit.h+++ b/ cgit.h |
|
@@ -165,17 +165,17 @@ extern char *trim_end(const char *str, char c); |
165 | extern void *cgit_free_commitinfo(struct commitinfo *info); |
165 | extern void *cgit_free_commitinfo(struct commitinfo *info); |
166 | |
166 | |
167 | extern int cgit_diff_files(const unsigned char *old_sha1, |
167 | extern int cgit_diff_files(const unsigned char *old_sha1, |
168 | const unsigned char *new_sha1, |
168 | const unsigned char *new_sha1, |
169 | linediff_fn fn); |
169 | linediff_fn fn); |
170 | |
170 | |
171 | extern void cgit_diff_tree(const unsigned char *old_sha1, |
171 | extern void cgit_diff_tree(const unsigned char *old_sha1, |
172 | const unsigned char *new_sha1, |
172 | const unsigned char *new_sha1, |
173 | filepair_fn fn); |
173 | filepair_fn fn, const char *prefix); |
174 | |
174 | |
175 | extern void cgit_diff_commit(struct commit *commit, filepair_fn fn); |
175 | extern void cgit_diff_commit(struct commit *commit, filepair_fn fn); |
176 | |
176 | |
177 | extern char *fmt(const char *format,...); |
177 | extern char *fmt(const char *format,...); |
178 | |
178 | |
179 | extern void html(const char *txt); |
179 | extern void html(const char *txt); |
180 | extern void htmlf(const char *format,...); |
180 | extern void htmlf(const char *format,...); |
181 | extern void html_txt(char *txt); |
181 | extern void html_txt(char *txt); |
|