reflog-walk.hon commit reflog-walk: stop using fake parents (d08565b)
   1#ifndef REFLOG_WALK_H
   2#define REFLOG_WALK_H
   3
   4#include "cache.h"
   5
   6struct reflog_walk_info;
   7
   8extern void init_reflog_walk(struct reflog_walk_info **info);
   9extern int add_reflog_for_walk(struct reflog_walk_info *info,
  10                struct commit *commit, const char *name);
  11extern void show_reflog_message(struct reflog_walk_info *info, int,
  12                                const struct date_mode *, int force_date);
  13extern void get_reflog_message(struct strbuf *sb,
  14                struct reflog_walk_info *reflog_info);
  15extern const char *get_reflog_ident(struct reflog_walk_info *reflog_info);
  16extern void get_reflog_selector(struct strbuf *sb,
  17                struct reflog_walk_info *reflog_info,
  18                const struct date_mode *dmode, int force_date,
  19                int shorten);
  20
  21extern int reflog_walk_empty(struct reflog_walk_info *walk);
  22
  23struct commit *next_reflog_entry(struct reflog_walk_info *reflog_info);
  24
  25#endif