diff options
| author | John Keeping <john@keeping.me.uk> | 2015-08-12 15:34:48 +0100 | 
|---|---|---|
| committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2015-08-12 16:57:30 +0200 | 
| commit | 044e2d26da4f8b4f9ff25e4a729ab4e393073b5e (patch) | |
| tree | b98bb6979764625c4f919e90e3374f91b698dea4 /cgit.h | |
| parent | t0110: Chain together using && (diff) | |
| download | cgit-044e2d26da4f8b4f9ff25e4a729ab4e393073b5e.tar.gz cgit-044e2d26da4f8b4f9ff25e4a729ab4e393073b5e.tar.bz2 cgit-044e2d26da4f8b4f9ff25e4a729ab4e393073b5e.zip | |
shared: make cgit_diff_tree_cb public
This will allow us to use this nice wrapper function elsewhere, avoiding
dealing with the diff queue when we only need to inspect a filepair.
Signed-off-by: John Keeping <john@keeping.me.uk>
Diffstat (limited to '')
| -rw-r--r-- | cgit.h | 3 | 
1 files changed, 3 insertions, 0 deletions
| @@ -340,6 +340,9 @@ extern int cgit_refs_cb(const char *refname, const struct object_id *oid,  extern void *cgit_free_commitinfo(struct commitinfo *info); +void cgit_diff_tree_cb(struct diff_queue_struct *q, +		       struct diff_options *options, void *data); +  extern int cgit_diff_files(const unsigned char *old_sha1,  			   const unsigned char *new_sha1,  			   unsigned long *old_size, unsigned long *new_size, | 
