https://github.com/git/git
Raw File
Tip revision: 26aa9fc81d4c7f6c3b456a29da0b7ec72e5c6595 authored by Junio C Hamano on 18 November 2018, 09:24:49 UTC
Git 2.20-rc0
Tip revision: 26aa9fc
range-diff.h
#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
back to top