]> git.ipfire.org Git - thirdparty/git.git/blame - range-diff.h
The sixth batch
[thirdparty/git.git] / range-diff.h
CommitLineData
d9c66f0b
JS
1#ifndef RANGE_DIFF_H
2#define RANGE_DIFF_H
3
c8c5e43a 4#include "diff.h"
bd361918 5#include "argv-array.h"
c8c5e43a 6
25668659
ES
7#define RANGE_DIFF_CREATION_FACTOR_DEFAULT 60
8
d8981c3f 9/*
15beaaa3 10 * Compare series of commits in RANGE1 and RANGE2, and emit to the
d8981c3f
JH
11 * standard output. NULL can be passed to DIFFOPT to use the built-in
12 * default.
13 */
d9c66f0b 14int show_range_diff(const char *range1, const char *range2,
73a834e9 15 int creation_factor, int dual_color,
f8675343
DL
16 const struct diff_options *diffopt,
17 const struct argv_array *other_arg);
d9c66f0b
JS
18
19#endif