diff options
author | Daniel Barkalow <barkalow@iabervon.org> | 2008-02-18 22:56:08 -0500 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-02-19 00:56:46 -0800 |
commit | b02bd65f679024ce25afeddf7e96d6d7aea5fca6 (patch) | |
tree | 4322110463b86d392109280018a34acd30669127 /commit.h | |
parent | e1a37346210da8b165037984e02f750a6a135480 (diff) | |
download | git-b02bd65f679024ce25afeddf7e96d6d7aea5fca6.tar.gz |
Export some email and pretty-printing functions
These will be used for generating the cover letter in addition to the
patch emails.
Signed-off-by: Daniel Barkalow <barkalow@iabervon.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'commit.h')
-rw-r--r-- | commit.h | 15 |
1 files changed, 15 insertions, 0 deletions
@@ -71,6 +71,21 @@ extern void pretty_print_commit(enum cmit_fmt fmt, const struct commit*, int abbrev, const char *subject, const char *after_subject, enum date_mode, int non_ascii_present); +void pp_user_info(const char *what, enum cmit_fmt fmt, struct strbuf *sb, + const char *line, enum date_mode dmode, + const char *encoding); +void pp_title_line(enum cmit_fmt fmt, + const char **msg_p, + struct strbuf *sb, + const char *subject, + const char *after_subject, + const char *encoding, + int plain_non_ascii); +void pp_remainder(enum cmit_fmt fmt, + const char **msg_p, + struct strbuf *sb, + int indent); + /** Removes the first commit from a list sorted by date, and adds all * of its parents. |