]>
Commit | Line | Data |
---|---|---|
8860fd42 JS |
1 | #ifndef REFLOG_WALK_H |
2 | #define REFLOG_WALK_H | |
3 | ||
cd437120 JK |
4 | #include "cache.h" |
5 | ||
ef3ca954 | 6 | struct commit; |
8f8f5476 TR |
7 | struct reflog_walk_info; |
8 | ||
55454427 DL |
9 | void init_reflog_walk(struct reflog_walk_info **info); |
10 | int add_reflog_for_walk(struct reflog_walk_info *info, | |
8860fd42 | 11 | struct commit *commit, const char *name); |
55454427 | 12 | void show_reflog_message(struct reflog_walk_info *info, int, |
a5481a6c | 13 | const struct date_mode *, int force_date); |
55454427 | 14 | void get_reflog_message(struct strbuf *sb, |
8f8f5476 | 15 | struct reflog_walk_info *reflog_info); |
55454427 DL |
16 | const char *get_reflog_ident(struct reflog_walk_info *reflog_info); |
17 | timestamp_t get_reflog_timestamp(struct reflog_walk_info *reflog_info); | |
18 | void get_reflog_selector(struct strbuf *sb, | |
8f8f5476 | 19 | struct reflog_walk_info *reflog_info, |
a5481a6c | 20 | const struct date_mode *dmode, int force_date, |
8f8f5476 | 21 | int shorten); |
8860fd42 | 22 | |
55454427 | 23 | int reflog_walk_empty(struct reflog_walk_info *walk); |
7f97de5e | 24 | |
d08565bf JK |
25 | struct commit *next_reflog_entry(struct reflog_walk_info *reflog_info); |
26 | ||
8860fd42 | 27 | #endif |