Fix passwd(5) ref and reflect that commit doens't use commit-tree
[git/dscho.git] / list-objects.h
blob0f41391ecc00eac324ea76de7654781c4fce094e
1 #ifndef LIST_OBJECTS_H
2 #define LIST_OBJECTS_H
4 typedef void (*show_commit_fn)(struct commit *);
5 typedef void (*show_object_fn)(struct object_array_entry *);
6 typedef void (*show_edge_fn)(struct commit *);
8 void traverse_commit_list(struct rev_info *revs, show_commit_fn, show_object_fn);
10 void mark_edges_uninteresting(struct commit_list *, struct rev_info *, show_edge_fn);
12 #endif