summaryrefslogtreecommitdiff
path: root/log-tree.h
diff options
context:
space:
mode:
Diffstat (limited to 'log-tree.h')
-rw-r--r--log-tree.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/log-tree.h b/log-tree.h
new file mode 100644
index 0000000..b33f7cd
--- /dev/null
+++ b/log-tree.h
@@ -0,0 +1,17 @@
+#ifndef LOG_TREE_H
+#define LOG_TREE_H
+
+#include "revision.h"
+
+struct log_info {
+ struct commit *commit, *parent;
+};
+
+void init_log_tree_opt(struct rev_info *);
+int log_tree_diff_flush(struct rev_info *);
+int log_tree_commit(struct rev_info *, struct commit *);
+int log_tree_opt_parse(struct rev_info *, const char **, int);
+void show_log(struct rev_info *opt, const char *sep);
+void show_decorations(struct commit *commit);
+
+#endif