]> git.ipfire.org Git - thirdparty/git.git/blame_incremental - log-tree.h
GIT-VERSION-FILE: check ./version first.
[thirdparty/git.git] / log-tree.h
... / ...
CommitLineData
1#ifndef LOG_TREE_H
2#define LOG_TREE_H
3
4#include "revision.h"
5
6struct log_info {
7 struct commit *commit, *parent;
8};
9
10void init_log_tree_opt(struct rev_info *);
11int log_tree_diff_flush(struct rev_info *);
12int log_tree_commit(struct rev_info *, struct commit *);
13int log_tree_opt_parse(struct rev_info *, const char **, int);
14void show_log(struct rev_info *opt, const char *sep);
15
16#endif