1
0
mirror of https://github.com/git/git.git synced 2024-09-22 06:42:22 +02:00
git/list-objects.h
Junio C Hamano c64ed70d25 Separate object listing routines out of rev-list
Create a separate file, list-objects.c, and move object listing
routines from rev-list to it.  The next round will use it in
pack-objects directly.

Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-09-07 02:46:01 -07:00

9 lines
203 B
C

#ifndef LIST_OBJECTS_H
#define LIST_OBJECTS_H
void traverse_commit_list(struct rev_info *revs,
void (*show_commit)(struct commit *),
void (*show_object)(struct object_array_entry *));
#endif