Turn the flags in struct dir_struct into a single variable
[gitweb.git] / log-tree.h
index 91a909be73130b8542ed9092e120084bb263105b..f2a90084ae1874632318c7880e95426eca2682ea 100644 (file)
@@ -3,9 +3,20 @@
 
 #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);
+void show_decorations(struct rev_info *opt, struct commit *commit);
+void log_write_email_headers(struct rev_info *opt, const char *name,
+                            const char **subject_p,
+                            const char **extra_headers_p,
+                            int *need_8bit_cte_p);
+void load_ref_decorations(void);
 
 #endif