Johannes Schindelin | 8860fd4 | 2007-01-11 11:47:48 +0100 | [diff] [blame] | 1 | #ifndef REFLOG_WALK_H |
| 2 | #define REFLOG_WALK_H |
| 3 | |
| 4 | extern void init_reflog_walk(struct reflog_walk_info** info); |
Johannes Schindelin | 7b69b87 | 2007-07-24 00:39:50 +0100 | [diff] [blame] | 5 | extern int add_reflog_for_walk(struct reflog_walk_info *info, |
Johannes Schindelin | 8860fd4 | 2007-01-11 11:47:48 +0100 | [diff] [blame] | 6 | struct commit *commit, const char *name); |
| 7 | extern void fake_reflog_parent(struct reflog_walk_info *info, |
| 8 | struct commit *commit); |
Johannes Schindelin | 4e244cb | 2007-02-08 21:58:33 +0100 | [diff] [blame] | 9 | extern void show_reflog_message(struct reflog_walk_info *info, int, int); |
Johannes Schindelin | 8860fd4 | 2007-01-11 11:47:48 +0100 | [diff] [blame] | 10 | |
| 11 | #endif |