2008-02-26 00:24:14 +01:00
|
|
|
#ifndef SHORTLOG_H
|
|
|
|
#define SHORTLOG_H
|
|
|
|
|
2008-07-21 20:03:49 +02:00
|
|
|
#include "string-list.h"
|
2008-02-26 00:24:14 +01:00
|
|
|
|
|
|
|
struct shortlog {
|
2008-07-21 20:03:49 +02:00
|
|
|
struct string_list list;
|
2008-02-26 00:24:14 +01:00
|
|
|
int summary;
|
|
|
|
int wrap_lines;
|
|
|
|
int sort_by_number;
|
|
|
|
int wrap;
|
|
|
|
int in1;
|
|
|
|
int in2;
|
2008-07-14 20:08:52 +02:00
|
|
|
int user_format;
|
2010-05-04 05:18:57 +02:00
|
|
|
int abbrev;
|
2008-02-26 00:24:14 +01:00
|
|
|
|
|
|
|
char *common_repo_prefix;
|
|
|
|
int email;
|
2008-07-21 20:03:49 +02:00
|
|
|
struct string_list mailmap;
|
2008-02-26 00:24:14 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
void shortlog_init(struct shortlog *log);
|
|
|
|
|
|
|
|
void shortlog_add_commit(struct shortlog *log, struct commit *commit);
|
|
|
|
|
|
|
|
void shortlog_output(struct shortlog *log);
|
|
|
|
|
|
|
|
#endif
|