~ubuntu-branches/ubuntu/intrepid/git-core/intrepid-updates

« back to all changes in this revision

Viewing changes to reflog-walk.h

  • Committer: Package Import Robot
  • Author(s): Gerrit Pape
  • Date: 2007-04-22 13:31:05 UTC
  • mto: This revision was merged to the branch mainline in revision 20.
  • Revision ID: package-import@ubuntu.com-20070422133105-xg8fnm18r2cxcbg1
Tags: upstream-1.5.1.2
ImportĀ upstreamĀ versionĀ 1.5.1.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef REFLOG_WALK_H
 
2
#define REFLOG_WALK_H
 
3
 
 
4
extern void init_reflog_walk(struct reflog_walk_info** info);
 
5
extern void add_reflog_for_walk(struct reflog_walk_info *info,
 
6
                struct commit *commit, const char *name);
 
7
extern void fake_reflog_parent(struct reflog_walk_info *info,
 
8
                struct commit *commit);
 
9
extern void show_reflog_message(struct reflog_walk_info *info, int, int);
 
10
 
 
11
#endif