summaryrefslogtreecommitdiff
path: root/list-objects.h
blob: a952680e46671db2543bc4abff78a2d898cd1408 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#ifndef LIST_OBJECTS_H
#define LIST_OBJECTS_H
 
struct commit;
struct object;
struct rev_info;
 
typedef void (*show_commit_fn)(struct commit *, void *);
typedef void (*show_object_fn)(struct object *, const char *, void *);
void traverse_commit_list(struct rev_info *, show_commit_fn, show_object_fn, void *);
 
typedef void (*show_edge_fn)(struct commit *);
void mark_edges_uninteresting(struct rev_info *revs,
			      show_edge_fn show_edge,
			      int sparse);
 
struct oidset;
struct list_objects_filter_options;
 
void traverse_commit_list_filtered(
	struct list_objects_filter_options *filter_options,
	struct rev_info *revs,
	show_commit_fn show_commit,
	show_object_fn show_object,
	void *show_data,
	struct oidset *omitted);
 
#endif /* LIST_OBJECTS_H */