]>
Commit | Line | Data |
---|---|---|
c64ed70d JH |
1 | #ifndef LIST_OBJECTS_H |
2 | #define LIST_OBJECTS_H | |
3 | ||
11c211fa | 4 | typedef void (*show_commit_fn)(struct commit *, void *); |
49473672 | 5 | typedef void (*show_object_fn)(struct object *, const struct name_path *, const char *, void *); |
11c211fa | 6 | void traverse_commit_list(struct rev_info *, show_commit_fn, show_object_fn, void *); |
8d1d8f83 | 7 | |
49473672 | 8 | typedef void (*show_edge_fn)(struct commit *); |
8d1d8f83 | 9 | void mark_edges_uninteresting(struct commit_list *, struct rev_info *, show_edge_fn); |
c64ed70d JH |
10 | |
11 | #endif |