Staging
v0.8.1
Revision 7be2b6e02b4f2a1b4812764f65b12cafb11a934e authored by Junio C Hamano on 10 December 2007, 09:22:42 UTC, committed by Junio C Hamano on 10 December 2007, 09:22:42 UTC
This is to primarily pull in MANPATH tweak and help.txt formatting fix
from the master branch.
2 parent s c07a07c + 591aa25
Raw File
log-tree.h
#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
back to top