]> git.ipfire.org Git - thirdparty/git.git/blame - bisect.h
list-objects: add "void *data" parameter to show functions
[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
37c4c38d
CC
12/* show_bisect_vars flags */
13#define BISECT_SHOW_ALL (1<<0)
14#define BISECT_SHOW_TRIED (1<<1)
e89aa6d2 15#define BISECT_SHOW_STRINGED (1<<2)
37c4c38d 16
1bf072e3 17/*
37c4c38d 18 * The flag BISECT_SHOW_ALL should not be set if this function is called
1bf072e3
CC
19 * from outside "builtin-rev-list.c" as otherwise it would use
20 * static "revs" from this file.
21 */
7428d754 22extern int show_bisect_vars(struct rev_info *revs, int reaches, int all,
37c4c38d 23 int flags);
6a17fad7 24
1bf072e3
CC
25extern int bisect_next_vars(const char *prefix);
26
a2ad79ce 27#endif