2006-09-05 06:50:12 +02:00
|
|
|
#ifndef LIST_OBJECTS_H
|
|
|
|
#define LIST_OBJECTS_H
|
|
|
|
|
2009-04-06 21:28:36 +02:00
|
|
|
typedef void (*show_commit_fn)(struct commit *, void *);
|
2011-09-02 00:43:33 +02:00
|
|
|
typedef void (*show_object_fn)(struct object *, const struct name_path *, const char *, void *);
|
2009-04-06 21:28:36 +02:00
|
|
|
void traverse_commit_list(struct rev_info *, show_commit_fn, show_object_fn, void *);
|
2006-09-06 10:42:23 +02:00
|
|
|
|
2011-09-02 00:43:33 +02:00
|
|
|
typedef void (*show_edge_fn)(struct commit *);
|
2013-08-16 11:52:06 +02:00
|
|
|
void mark_edges_uninteresting(struct rev_info *, show_edge_fn);
|
2006-09-05 06:50:12 +02:00
|
|
|
|
|
|
|
#endif
|