1#ifndef SHORTLOG_H
2#define SHORTLOG_H
34
#include "path-list.h"
56
struct shortlog {
7struct path_list list;
8int summary;
9int wrap_lines;
10int sort_by_number;
11int wrap;
12int in1;
13int in2;
1415
char *common_repo_prefix;
16int email;
17struct path_list mailmap;
18};
1920
void shortlog_init(struct shortlog *log);
2122
void shortlog_add_commit(struct shortlog *log, struct commit *commit);
2324
void shortlog_output(struct shortlog *log);
2526
#endif