1#ifndef BISECT_H 2#define BISECT_H 3 4externstruct commit_list *find_bisection(struct commit_list *list, 5int*reaches,int*all, 6int find_all); 7 8externstruct commit_list *filter_skipped(struct commit_list *list, 9struct commit_list **tried, 10int show_all); 11 12/* 13 * The "show_all" parameter should be 0 if this function is called 14 * from outside "builtin-rev-list.c" as otherwise it would use 15 * static "revs" from this file. 16 */ 17externintshow_bisect_vars(struct rev_info *revs,int reaches,int all, 18int show_all,int show_tried); 19 20externintbisect_next_vars(const char*prefix); 21 22#endif