blob: 860a15c9b8de4b82ff5979d7d4afbba922c60732 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef BISECT_H
#define BISECT_H
extern struct commit_list *find_bisection(struct commit_list *list,
int *reaches, int *all,
int find_all);
extern int show_bisect_vars(int reaches, int all, int show_all);
#endif
|