log: fix -L bounds checking bug
[gitweb.git] / commit.h
index 011ddb146f4699a7333f4db3689f4eaac997bb10..d912a9d4ac3fe36b2e69d48b1725f01bdf289b26 100644 (file)
--- a/commit.h
+++ b/commit.h
@@ -6,6 +6,7 @@
 #include "strbuf.h"
 #include "decorate.h"
 #include "gpg-interface.h"
+#include "string-list.h"
 
 struct commit_list {
        struct commit *item;
@@ -95,11 +96,13 @@ struct pretty_print_context {
        const char *output_encoding;
        struct string_list *mailmap;
        int color;
+       struct ident_split *from_ident;
 
        /*
         * Fields below here are manipulated internally by pp_* functions and
         * should not be counted on by callers.
         */
+       struct string_list in_body_headers;
 };
 
 struct userformat_want {
@@ -262,4 +265,6 @@ extern void print_commit_list(struct commit_list *list,
  */
 extern void check_commit_signature(const struct commit* commit, struct signature_check *sigc);
 
+int compare_commits_by_commit_date(const void *a_, const void *b_, void *unused);
+
 #endif /* COMMIT_H */