]> gitweb.ps.run Git - ps-cgit/blobdiff - cgit.h
Use standard tree-diff function when showing diffstat for single commit
[ps-cgit] / cgit.h
diff --git a/cgit.h b/cgit.h
index b7f8827f3e581b1d9de4aa9f98ebdad299e07c41..24b02d74b45ad07475557474e3eebf4c28decb48 100644 (file)
--- a/cgit.h
+++ b/cgit.h
@@ -19,6 +19,7 @@
 
 
 typedef void (*configfn)(const char *name, const char *value);
+typedef void (*filepair_fn)(struct diff_filepair *pair);
 
 struct cacheitem {
        char *name;
@@ -116,6 +117,10 @@ extern int chk_positive(int result, char *msg);
 extern int hextoint(char c);
 
 extern void *cgit_free_commitinfo(struct commitinfo *info);
+extern void cgit_diff_tree(const unsigned char *old_sha1,
+                          const unsigned char *new_sha1,
+                          filepair_fn fn);
+extern void cgit_diff_commit(struct commit *commit, filepair_fn fn);
 
 extern char *fmt(const char *format,...);