]> git.ipfire.org Git - thirdparty/git.git/blame - range-diff.h
Merge branch 'ab/pager-exit-log'
[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"
dbbcd44f 5#include "strvec.h"
c8c5e43a 6
25668659
ES
7#define RANGE_DIFF_CREATION_FACTOR_DEFAULT 60
8
f1ce6c19
JS
9struct range_diff_options {
10 int creation_factor;
11 unsigned dual_color:1;
1e79f973 12 unsigned left_only:1, right_only:1;
f1ce6c19
JS
13 const struct diff_options *diffopt; /* may be NULL */
14 const struct strvec *other_arg; /* may be NULL */
15};
16
d8981c3f 17/*
f1ce6c19
JS
18 * Compare series of commits in `range1` and `range2`, and emit to the
19 * standard output.
d8981c3f 20 */
d9c66f0b 21int show_range_diff(const char *range1, const char *range2,
f1ce6c19 22 struct range_diff_options *opts);
d9c66f0b 23
679b5916
JS
24/*
25 * Determine whether the given argument is usable as a range argument of `git
359f0d75 26 * range-diff`, e.g. A..B.
679b5916
JS
27 */
28int is_range_diff_range(const char *arg);
29
d9c66f0b 30#endif