Revision 44bdc434e830cea881eb908e32d80d5bc0c71d4f authored by Junio C Hamano on 13 June 2007, 03:48:21 UTC, committed by Junio C Hamano on 13 June 2007, 03:48:21 UTC
* sv/objfixes:
  Don't assume tree entries that are not dirs are blobs
2 parent s 2cf69cf + e2ac7cb
Raw File
reflog-walk.h
#ifndef REFLOG_WALK_H
#define REFLOG_WALK_H

extern void init_reflog_walk(struct reflog_walk_info** info);
extern void add_reflog_for_walk(struct reflog_walk_info *info,
		struct commit *commit, const char *name);
extern void fake_reflog_parent(struct reflog_walk_info *info,
		struct commit *commit);
extern void show_reflog_message(struct reflog_walk_info *info, int, int);

#endif
back to top