7 #define RANGE_DIFF_CREATION_FACTOR_DEFAULT 60
9 struct range_diff_options {
11 unsigned dual_color:1;
12 unsigned left_only:1, right_only:1;
13 const struct diff_options *diffopt; /* may be NULL */
14 const struct strvec *other_arg; /* may be NULL */
18 * Compare series of commits in `range1` and `range2`, and emit to the
21 int show_range_diff(const char *range1, const char *range2,
22 struct range_diff_options *opts);