Unidiff1 files changed, 5 insertions, 0 deletions
|
diff --git a/cgit.h b/cgit.h index b7f8827..24b02d7 100644 --- a/ cgit.h+++ b/ cgit.h |
|
@@ -19,6 +19,7 @@ |
19 | |
19 | |
20 | |
20 | |
21 | typedef void (*configfn)(const char *name, const char *value); |
21 | typedef void (*configfn)(const char *name, const char *value); |
| |
22 | typedef void (*filepair_fn)(struct diff_filepair *pair); |
22 | |
23 | |
23 | struct cacheitem { |
24 | struct cacheitem { |
24 | char *name; |
25 | char *name; |
@@ -116,6 +117,10 @@ extern int chk_positive(int result, char *msg); |
116 | extern int hextoint(char c); |
117 | extern int hextoint(char c); |
117 | |
118 | |
118 | extern void *cgit_free_commitinfo(struct commitinfo *info); |
119 | extern void *cgit_free_commitinfo(struct commitinfo *info); |
| |
120 | extern void cgit_diff_tree(const unsigned char *old_sha1, |
| |
121 | const unsigned char *new_sha1, |
| |
122 | filepair_fn fn); |
| |
123 | extern void cgit_diff_commit(struct commit *commit, filepair_fn fn); |
119 | |
124 | |
120 | extern char *fmt(const char *format,...); |
125 | extern char *fmt(const char *format,...); |
121 | |
126 | |
|