diff-merges: rename diff_merges_default_to_enable() to match semantics
[git] / diff-merges.h
1 #ifndef DIFF_MERGES_H
2 #define DIFF_MERGES_H
3
4 /*
5  * diff-merges - utility module to handle command-line options for
6  * selection of particular diff format of merge commits
7  * representation.
8  */
9
10 struct rev_info;
11
12 void diff_merges_init_revs(struct rev_info *revs);
13
14 int diff_merges_parse_opts(struct rev_info *revs, const char **argv);
15
16 void diff_merges_setup_revs(struct rev_info *revs);
17
18 void diff_merges_default_to_dense_combined(struct rev_info *revs);
19
20 void diff_merges_default_to_first_parent(struct rev_info *revs);
21
22
23 #endif