]> git.ipfire.org Git - thirdparty/git.git/blame - bisect.h
rev-list: remove stringed output flag from "show_bisect_vars"
[thirdparty/git.git] / bisect.h
CommitLineData
a2ad79ce
CC
1#ifndef BISECT_H
2#define BISECT_H
3
4extern struct commit_list *find_bisection(struct commit_list *list,
5 int *reaches, int *all,
6 int find_all);
7
95188648
CC
8extern struct commit_list *filter_skipped(struct commit_list *list,
9 struct commit_list **tried,
10 int show_all);
11
280e65cb
CC
12extern void print_commit_list(struct commit_list *list,
13 const char *format_cur,
14 const char *format_last);
15
13858e57 16/* bisect_show_flags flags in struct rev_list_info */
37c4c38d
CC
17#define BISECT_SHOW_ALL (1<<0)
18#define BISECT_SHOW_TRIED (1<<1)
19
d797257e
CC
20struct rev_list_info {
21 struct rev_info *revs;
13858e57 22 int bisect_show_flags;
d797257e
CC
23 int show_timestamp;
24 int hdr_termination;
25 const char *header_prefix;
26};
27
13858e57 28extern int show_bisect_vars(struct rev_list_info *info, int reaches, int all);
6a17fad7 29
ef24c7ca 30extern int bisect_next_exit(const char *prefix);
1bf072e3 31
1c876546
CC
32extern int estimate_bisect_steps(int all);
33
a2ad79ce 34#endif