]>
Commit | Line | Data |
---|---|---|
8860fd42 JS |
1 | #ifndef REFLOG_WALK_H |
2 | #define REFLOG_WALK_H | |
3 | ||
cd437120 JK |
4 | #include "cache.h" |
5 | ||
8f8f5476 TR |
6 | struct reflog_walk_info; |
7 | ||
8860fd42 | 8 | extern void init_reflog_walk(struct reflog_walk_info** info); |
7b69b873 | 9 | extern int add_reflog_for_walk(struct reflog_walk_info *info, |
8860fd42 JS |
10 | struct commit *commit, const char *name); |
11 | extern void fake_reflog_parent(struct reflog_walk_info *info, | |
12 | struct commit *commit); | |
cd437120 JK |
13 | extern void show_reflog_message(struct reflog_walk_info *info, int, |
14 | enum date_mode); | |
8f8f5476 TR |
15 | extern void get_reflog_message(struct strbuf *sb, |
16 | struct reflog_walk_info *reflog_info); | |
17 | extern void get_reflog_selector(struct strbuf *sb, | |
18 | struct reflog_walk_info *reflog_info, | |
19 | enum date_mode dmode, | |
20 | int shorten); | |
8860fd42 JS |
21 | |
22 | #endif |