Staging
v0.5.1
https://github.com/git/git
Revision 005e2dfdf299a7d869fa9ec819171fba574f42eb authored by Junio C Hamano on 18 November 2007, 22:00:38 UTC, committed by Junio C Hamano on 18 November 2007, 22:00:38 UTC
1 parent 4b87474
Raw File
Tip revision: 005e2dfdf299a7d869fa9ec819171fba574f42eb authored by Junio C Hamano on 18 November 2007, 22:00:38 UTC
GIT 1.5.3.6
Tip revision: 005e2df
list-objects.h
#ifndef LIST_OBJECTS_H
#define LIST_OBJECTS_H

typedef void (*show_commit_fn)(struct commit *);
typedef void (*show_object_fn)(struct object_array_entry *);
typedef void (*show_edge_fn)(struct commit *);

void traverse_commit_list(struct rev_info *revs, show_commit_fn, show_object_fn);

void mark_edges_uninteresting(struct commit_list *, struct rev_info *, show_edge_fn);

#endif
back to top