perf: amend the grep tests to test grep.threads
[git.git] / reflog-walk.h
blob7553c448fe5bf8b432d7fdb2ef5cba967bb985cd
1 #ifndef REFLOG_WALK_H
2 #define REFLOG_WALK_H
4 #include "cache.h"
6 struct reflog_walk_info;
8 extern void init_reflog_walk(struct reflog_walk_info **info);
9 extern int add_reflog_for_walk(struct reflog_walk_info *info,
10 struct commit *commit, const char *name);
11 extern void show_reflog_message(struct reflog_walk_info *info, int,
12 const struct date_mode *, int force_date);
13 extern void get_reflog_message(struct strbuf *sb,
14 struct reflog_walk_info *reflog_info);
15 extern const char *get_reflog_ident(struct reflog_walk_info *reflog_info);
16 extern timestamp_t get_reflog_timestamp(struct reflog_walk_info *reflog_info);
17 extern void get_reflog_selector(struct strbuf *sb,
18 struct reflog_walk_info *reflog_info,
19 const struct date_mode *dmode, int force_date,
20 int shorten);
22 extern int reflog_walk_empty(struct reflog_walk_info *walk);
24 struct commit *next_reflog_entry(struct reflog_walk_info *reflog_info);
26 #endif