summaryrefslogtreecommitdiffabout
path: root/cgit.h
authorLars Hjemli <hjemli@gmail.com>2007-05-13 09:24:23 (UTC)
committer Lars Hjemli <hjemli@gmail.com>2007-05-13 09:24:23 (UTC)
commit1b49de3c2c52e29c78f870826b6334abdadc0295 (patch) (unidiff)
tree65c91902c77afe4837d2a650de5863e6afc9c9a7 /cgit.h
parentf5af0beb6ab569d64950ca55a52a07923917ce81 (diff)
downloadcgit-1b49de3c2c52e29c78f870826b6334abdadc0295.zip
cgit-1b49de3c2c52e29c78f870826b6334abdadc0295.tar.gz
cgit-1b49de3c2c52e29c78f870826b6334abdadc0295.tar.bz2
Add shared diff-handling functions
This adds a standard interface for tree diffing. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to 'cgit.h') (more/less context) (ignore whitespace changes)
-rw-r--r--cgit.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/cgit.h b/cgit.h
index b7f8827..24b02d7 100644
--- a/cgit.h
+++ b/cgit.h
@@ -21,2 +21,3 @@
21typedef void (*configfn)(const char *name, const char *value); 21typedef void (*configfn)(const char *name, const char *value);
22typedef void (*filepair_fn)(struct diff_filepair *pair);
22 23
@@ -118,2 +119,6 @@ extern int hextoint(char c);
118extern void *cgit_free_commitinfo(struct commitinfo *info); 119extern void *cgit_free_commitinfo(struct commitinfo *info);
120extern void cgit_diff_tree(const unsigned char *old_sha1,
121 const unsigned char *new_sha1,
122 filepair_fn fn);
123extern void cgit_diff_commit(struct commit *commit, filepair_fn fn);
119 124