aboutsummaryrefslogtreecommitdiffstats
path: root/cgit.h
diff options
context:
space:
mode:
authorLars Hjemli <hjemli@gmail.com>2007-05-13 14:21:19 +0200
committerLars Hjemli <hjemli@gmail.com>2007-05-13 14:21:19 +0200
commitc4ef667961ef4668c9449124f97d55b9ac46c059 (patch)
tree3e1d3ed9dbf2bac55d0ffbcd2909c5d935fae48b /cgit.h
parentShow number of changed files in log view (diff)
downloadcgit-c4ef667961ef4668c9449124f97d55b9ac46c059.tar.xz
cgit-c4ef667961ef4668c9449124f97d55b9ac46c059.zip
Add standard interface for file diff functions
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to 'cgit.h')
-rw-r--r--cgit.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/cgit.h b/cgit.h
index 24b02d7..43de375 100644
--- a/cgit.h
+++ b/cgit.h
@@ -20,6 +20,7 @@
typedef void (*configfn)(const char *name, const char *value);
typedef void (*filepair_fn)(struct diff_filepair *pair);
+typedef void (*linediff_fn)(char *line, int len);
struct cacheitem {
char *name;
@@ -117,9 +118,15 @@ extern int chk_positive(int result, char *msg);
extern int hextoint(char c);
extern void *cgit_free_commitinfo(struct commitinfo *info);
+
+extern int cgit_diff_files(const unsigned char *old_sha1,
+ const unsigned char *new_sha1,
+ linediff_fn fn);
+
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,...);