bisect--helper: implement "git bisect--helper"
[git/dscho.git] / bisect.h
blob05eea175f792ad3944b6e6584c4380318e4b2489
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);
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.
17 extern int show_bisect_vars(struct rev_info *revs, int reaches, int all,
18 int show_all, int show_tried);
20 extern int bisect_next_vars(const char *prefix);
22 #endif