4 extern struct commit_list
*find_bisection(struct commit_list
*list
,
5 int *reaches
, int *all
,
8 extern struct commit_list
*filter_skipped(struct commit_list
*list
,
9 struct commit_list
**tried
,
14 extern void print_commit_list(struct commit_list
*list
,
15 const char *format_cur
,
16 const char *format_last
);
18 /* bisect_show_flags flags in struct rev_list_info */
19 #define BISECT_SHOW_ALL (1<<0)
20 #define BISECT_SHOW_TRIED (1<<1)
22 struct rev_list_info
{
23 struct rev_info
*revs
;
24 int bisect_show_flags
;
27 const char *header_prefix
;
30 extern int show_bisect_vars(struct rev_list_info
*info
, int reaches
, int all
);
32 extern int bisect_next_all(const char *prefix
);
34 extern int estimate_bisect_steps(int all
);