X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=commit.h;h=467872eecabf05ccedbb9bf8247b6de244416b8f;hb=91c8d5905c33e9d7c9014a1c6c7cec8eb86584df;hp=59de17eff81dc6987350baab086935de7c9dcd1f;hpb=a2d7c6c62080b542007f9787342aa1e57b95f50c;p=git.git diff --git a/commit.h b/commit.h index 59de17eff..467872eec 100644 --- a/commit.h +++ b/commit.h @@ -61,20 +61,18 @@ enum cmit_fmt { }; extern enum cmit_fmt get_commit_format(const char *arg); -extern unsigned long pretty_print_commit(enum cmit_fmt fmt, const struct commit *, unsigned long len, char *buf, unsigned long space, int abbrev, const char *subject, const char *after_subject, int relative_date); +extern unsigned long pretty_print_commit(enum cmit_fmt fmt, const struct commit *, unsigned long len, char **buf_p, unsigned long *space_p, int abbrev, const char *subject, const char *after_subject, enum date_mode dmode); /** Removes the first commit from a list sorted by date, and adds all * of its parents. **/ -struct commit *pop_most_recent_commit(struct commit_list **list, +struct commit *pop_most_recent_commit(struct commit_list **list, unsigned int mark); struct commit *pop_commit(struct commit_list **stack); void clear_commit_marks(struct commit *commit, unsigned int mark); -int count_parents(struct commit * commit); - /* * Performs an in-place topological sort of list supplied. *