shortlog: add '--sort-key' and '--sort-key-regexp' options
[git/dscho.git] / shortlog.h
blob9dedaf6fbd713cf24cef7233dd66ac134bcdf11c
1 #ifndef SHORTLOG_H
2 #define SHORTLOG_H
4 #include "string-list.h"
6 struct shortlog {
7 struct string_list list;
8 int summary;
9 int wrap_lines;
10 int sort_by_number;
11 int wrap;
12 int in1;
13 int in2;
14 int user_format;
16 char *common_repo_prefix;
17 int email;
18 struct string_list mailmap;
19 regex_t *sort_key;
22 void shortlog_init(struct shortlog *log);
24 void shortlog_add_commit(struct shortlog *log, struct commit *commit);
26 void shortlog_output(struct shortlog *log);
28 #endif