diff options
author | Lars Hjemli <hjemli@gmail.com> | 2009-01-31 18:40:40 (JST) |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2009-01-31 18:40:40 (JST) |
commit | c495cf02bac16e459f7c9e1740798646f12c00c5 (patch) | |
tree | a36ba3904edd96ffc79fdf420fb10d33117a469f /cgit.h | |
parent | d6174b7aab476c2b6a86e59d98cf978d603045f4 (diff) | |
download | cgit-c495cf02bac16e459f7c9e1740798646f12c00c5.zip cgit-c495cf02bac16e459f7c9e1740798646f12c00c5.tar.gz |
Handle binary files in diffs
This teaches all diff-related operations (i.e. ui-log, ui-diff and ui-patch)
how to handle binary files.
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to 'cgit.h')
-rw-r--r-- | cgit.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -15,6 +15,7 @@ | |||
15 | #include <revision.h> | 15 | #include <revision.h> |
16 | #include <log-tree.h> | 16 | #include <log-tree.h> |
17 | #include <archive.h> | 17 | #include <archive.h> |
18 | #include <xdiff-interface.h> | ||
18 | #include <xdiff/xdiff.h> | 19 | #include <xdiff/xdiff.h> |
19 | #include <utf8.h> | 20 | #include <utf8.h> |
20 | 21 | ||
@@ -221,7 +222,8 @@ extern void *cgit_free_commitinfo(struct commitinfo *info); | |||
221 | 222 | ||
222 | extern int cgit_diff_files(const unsigned char *old_sha1, | 223 | extern int cgit_diff_files(const unsigned char *old_sha1, |
223 | const unsigned char *new_sha1, | 224 | const unsigned char *new_sha1, |
224 | linediff_fn fn); | 225 | unsigned long *old_size, unsigned long *new_size, |
226 | int *binary, linediff_fn fn); | ||
225 | 227 | ||
226 | extern void cgit_diff_tree(const unsigned char *old_sha1, | 228 | extern void cgit_diff_tree(const unsigned char *old_sha1, |
227 | const unsigned char *new_sha1, | 229 | const unsigned char *new_sha1, |