* lt/pack-object-memuse:
  show_object(): push path_name() call further down
  process_{tree,blob}: show objects without buffering
Conflicts:
	builtin-pack-objects.c
	builtin-rev-list.c
	list-objects.c
	list-objects.h
	upload-pack.c
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			422 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			422 B
		
	
	
	
		
			C
		
	
	
	
	
	
#ifndef LIST_OBJECTS_H
 | 
						|
#define LIST_OBJECTS_H
 | 
						|
 | 
						|
typedef void (*show_commit_fn)(struct commit *, void *);
 | 
						|
typedef void (*show_object_fn)(struct object *, const struct name_path *, const char *);
 | 
						|
typedef void (*show_edge_fn)(struct commit *);
 | 
						|
 | 
						|
void traverse_commit_list(struct rev_info *, show_commit_fn, show_object_fn, void *);
 | 
						|
 | 
						|
void mark_edges_uninteresting(struct commit_list *, struct rev_info *, show_edge_fn);
 | 
						|
 | 
						|
#endif
 |