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