rev-list: call new "filter_skip" function
[git/dscho.git] / bisect.h
blob2489630da07bb82596de69aa0893e0e522ff8f06
1 #ifndef BISECT_H
2 #define BISECT_H
4 extern struct commit_list *find_bisection(struct commit_list *list,
5 int *reaches, int *all,
6 int find_all);
8 extern struct commit_list *filter_skipped(struct commit_list *list,
9 struct commit_list **tried,
10 int show_all);
12 extern int show_bisect_vars(struct rev_info *revs, int reaches, int all,
13 int show_all, int show_tried);
15 #endif