Staging
v0.5.1
https://github.com/git/git
Revision a95148dea1d9546e96adef7c3cad11be80aa30f5 authored by Junio C Hamano on 04 March 2009, 07:02:16 UTC, committed by Junio C Hamano on 04 March 2009, 07:37:19 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent a1070d4
Raw File
Tip revision: a95148dea1d9546e96adef7c3cad11be80aa30f5 authored by Junio C Hamano on 04 March 2009, 07:02:16 UTC
GIT 1.6.2
Tip revision: a95148d
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