Welcome to mirror list, hosted at ThFree Co, Russian Federation.

range-diff.h - git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 190593f0c78151c99cc6e87161137b99c2615c80 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef RANGE_DIFF_H
#define RANGE_DIFF_H

#include "diff.h"

#define RANGE_DIFF_CREATION_FACTOR_DEFAULT 60

int show_range_diff(const char *range1, const char *range2,
		    int creation_factor, int dual_color,
		    struct diff_options *diffopt);

#endif