89aa6cb0b30989ce8b1ac17859efdb9d11c97035
1#ifndef BISECT_H
2#define BISECT_H
3
4extern struct commit_list *find_bisection(struct commit_list *list,
5 int *reaches, int *all,
6 int find_all);
7
8extern struct commit_list *filter_skipped(struct commit_list *list,
9 struct commit_list **tried,
10 int show_all);
11
12extern void print_commit_list(struct commit_list *list,
13 const char *format_cur,
14 const char *format_last);
15
16/* bisect_show_flags flags in struct rev_list_info */
17#define BISECT_SHOW_ALL (1<<0)
18#define BISECT_SHOW_TRIED (1<<1)
19#define BISECT_SHOW_STRINGED (1<<2)
20
21struct rev_list_info {
22 struct rev_info *revs;
23 int bisect_show_flags;
24 int show_timestamp;
25 int hdr_termination;
26 const char *header_prefix;
27};
28
29extern int show_bisect_vars(struct rev_list_info *info, int reaches, int all);
30
31extern int bisect_next_vars(const char *prefix);
32
33extern int estimate_bisect_steps(int all);
34
35#endif