1#ifndef REFLOG_WALK_H
2#define REFLOG_WALK_H
34
#include "cache.h"
56
extern void init_reflog_walk(struct reflog_walk_info** info);
7extern int add_reflog_for_walk(struct reflog_walk_info *info,
8struct commit *commit, const char *name);
9extern void fake_reflog_parent(struct reflog_walk_info *info,
10struct commit *commit);
11extern void show_reflog_message(struct reflog_walk_info *info, int,
12enum date_mode);
1314
#endif