Staging
v0.5.1
https://github.com/git/git
Revision 437b1b20df4b356c9342dac8d38849f24ef44f27 authored by Junio C Hamano on 14 February 2007, 00:00:00 UTC, committed by Junio C Hamano on 14 February 2007, 00:00:00 UTC
1 parent 26cfcfb
Raw File
Tip revision: 437b1b20df4b356c9342dac8d38849f24ef44f27 authored by Junio C Hamano on 14 February 2007, 00:00:00 UTC
GIT 1.5.0
Tip revision: 437b1b2
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