]> git.ipfire.org Git - thirdparty/git.git/blame_incremental - reflog-walk.h
The sixth batch
[thirdparty/git.git] / reflog-walk.h
... / ...
CommitLineData
1#ifndef REFLOG_WALK_H
2#define REFLOG_WALK_H
3
4struct commit;
5struct reflog_walk_info;
6struct date_mode;
7
8void init_reflog_walk(struct reflog_walk_info **info);
9void reflog_walk_info_release(struct reflog_walk_info *info);
10int add_reflog_for_walk(struct reflog_walk_info *info,
11 struct commit *commit, const char *name);
12void show_reflog_message(struct reflog_walk_info *info, int,
13 struct date_mode, int force_date);
14void get_reflog_message(struct strbuf *sb,
15 struct reflog_walk_info *reflog_info);
16const char *get_reflog_ident(struct reflog_walk_info *reflog_info);
17timestamp_t get_reflog_timestamp(struct reflog_walk_info *reflog_info);
18void get_reflog_selector(struct strbuf *sb,
19 struct reflog_walk_info *reflog_info,
20 struct date_mode dmode, int force_date,
21 int shorten);
22
23int reflog_walk_empty(struct reflog_walk_info *walk);
24
25struct commit *next_reflog_entry(struct reflog_walk_info *reflog_info);
26
27#endif