]> git.ipfire.org Git - thirdparty/git.git/blame - bisect.h
GIT 1.6.3
[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
13858e57 12/* bisect_show_flags flags in struct rev_list_info */
37c4c38d
CC
13#define BISECT_SHOW_ALL (1<<0)
14#define BISECT_SHOW_TRIED (1<<1)
e89aa6d2 15#define BISECT_SHOW_STRINGED (1<<2)
37c4c38d 16
d797257e
CC
17struct rev_list_info {
18 struct rev_info *revs;
13858e57 19 int bisect_show_flags;
d797257e
CC
20 int show_timestamp;
21 int hdr_termination;
22 const char *header_prefix;
23};
24
13858e57 25extern int show_bisect_vars(struct rev_list_info *info, int reaches, int all);
6a17fad7 26
1bf072e3
CC
27extern int bisect_next_vars(const char *prefix);
28
a2ad79ce 29#endif