]>
Commit | Line | Data |
---|---|---|
a2ad79ce CC |
1 | #ifndef BISECT_H |
2 | #define BISECT_H | |
3 | ||
4 | extern struct commit_list *find_bisection(struct commit_list *list, | |
5 | int *reaches, int *all, | |
6 | int find_all); | |
7 | ||
95188648 CC |
8 | extern struct commit_list *filter_skipped(struct commit_list *list, |
9 | struct commit_list **tried, | |
9af3589e CC |
10 | int show_all, |
11 | int *count, | |
12 | int *skipped_first); | |
95188648 | 13 | |
280e65cb CC |
14 | extern void print_commit_list(struct commit_list *list, |
15 | const char *format_cur, | |
16 | const char *format_last); | |
17 | ||
13858e57 | 18 | /* bisect_show_flags flags in struct rev_list_info */ |
37c4c38d CC |
19 | #define BISECT_SHOW_ALL (1<<0) |
20 | #define BISECT_SHOW_TRIED (1<<1) | |
21 | ||
d797257e CC |
22 | struct rev_list_info { |
23 | struct rev_info *revs; | |
13858e57 | 24 | int bisect_show_flags; |
d797257e CC |
25 | int show_timestamp; |
26 | int hdr_termination; | |
27 | const char *header_prefix; | |
28 | }; | |
29 | ||
13858e57 | 30 | extern int show_bisect_vars(struct rev_list_info *info, int reaches, int all); |
6a17fad7 | 31 | |
0871984d | 32 | extern int bisect_next_all(const char *prefix); |
1bf072e3 | 33 | |
1c876546 CC |
34 | extern int estimate_bisect_steps(int all); |
35 | ||
a2ad79ce | 36 | #endif |