travis-ci: switch to Xcode 10.1 macOS image
[gitweb.git] / shortlog.h
index 31ff491b7448f69385cddb640819e7ea14e2fb3e..2fa61c42946262238ae2f1662ef3c2d1e981b274 100644 (file)
@@ -1,20 +1,26 @@
 #ifndef SHORTLOG_H
 #define SHORTLOG_H
 
-#include "path-list.h"
+#include "string-list.h"
+
+struct commit;
 
 struct shortlog {
-       struct path_list list;
+       struct string_list list;
        int summary;
        int wrap_lines;
        int sort_by_number;
        int wrap;
        int in1;
        int in2;
+       int user_format;
+       int abbrev;
+       int committer;
 
        char *common_repo_prefix;
        int email;
-       struct path_list mailmap;
+       struct string_list mailmap;
+       FILE *file;
 };
 
 void shortlog_init(struct shortlog *log);