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