2009-03-26 04:55:24 +00:00
|
|
|
#ifndef BISECT_H
|
|
|
|
#define BISECT_H
|
|
|
|
|
|
|
|
extern struct commit_list *find_bisection(struct commit_list *list,
|
|
|
|
int *reaches, int *all,
|
|
|
|
int find_all);
|
|
|
|
|
2009-03-26 04:55:49 +00:00
|
|
|
extern struct commit_list *filter_skipped(struct commit_list *list,
|
|
|
|
struct commit_list **tried,
|
2009-06-06 04:41:33 +00:00
|
|
|
int show_all,
|
|
|
|
int *count,
|
|
|
|
int *skipped_first);
|
2009-03-26 04:55:49 +00:00
|
|
|
|
2009-03-29 09:55:43 +00:00
|
|
|
#define BISECT_SHOW_ALL (1<<0)
|
2012-02-28 14:00:00 +00:00
|
|
|
#define REV_LIST_QUIET (1<<1)
|
2009-03-29 09:55:43 +00:00
|
|
|
|
2009-04-06 20:28:00 +00:00
|
|
|
struct rev_list_info {
|
|
|
|
struct rev_info *revs;
|
2012-02-28 14:00:00 +00:00
|
|
|
int flags;
|
2009-04-06 20:28:00 +00:00
|
|
|
int show_timestamp;
|
|
|
|
int hdr_termination;
|
|
|
|
const char *header_prefix;
|
|
|
|
};
|
|
|
|
|
2011-08-04 12:01:00 +00:00
|
|
|
extern int bisect_next_all(const char *prefix, int no_checkout);
|
2009-03-26 04:55:54 +00:00
|
|
|
|
2009-04-19 09:55:38 +00:00
|
|
|
extern int estimate_bisect_steps(int all);
|
|
|
|
|
2015-06-29 15:40:30 +00:00
|
|
|
extern void read_bisect_terms(const char **bad, const char **good);
|
|
|
|
|
2009-03-26 04:55:24 +00:00
|
|
|
#endif
|