blob: 7ca1438f4d74b652f962c6bdfddd08fe0d75802d [file] [log] [blame]
Johannes Schindelin8860fd42007-01-11 11:47:48 +01001#ifndef REFLOG_WALK_H
2#define REFLOG_WALK_H
3
4extern void init_reflog_walk(struct reflog_walk_info** info);
Johannes Schindelin7b69b872007-07-24 00:39:50 +01005extern int add_reflog_for_walk(struct reflog_walk_info *info,
Johannes Schindelin8860fd42007-01-11 11:47:48 +01006 struct commit *commit, const char *name);
7extern void fake_reflog_parent(struct reflog_walk_info *info,
8 struct commit *commit);
Johannes Schindelin4e244cb2007-02-08 21:58:33 +01009extern void show_reflog_message(struct reflog_walk_info *info, int, int);
Johannes Schindelin8860fd42007-01-11 11:47:48 +010010
11#endif