diff options
author | Ben Straub <bs@github.com> | 2012-11-26 19:56:01 -0800 |
---|---|---|
committer | Ben Straub <bs@github.com> | 2012-11-27 13:18:29 -0800 |
commit | fe55f1631c85b322fac5a322863b40beefe68252 (patch) | |
tree | 43ee5d730d508c8c513387d15e635b989f3c4db9 /include/git2 | |
parent | eac7695683d03f9716a7ca04006b9b6c43976a15 (diff) | |
download | libgit2-fe55f1631c85b322fac5a322863b40beefe68252.tar.gz |
API updates for message.h
Diffstat (limited to 'include/git2')
-rw-r--r-- | include/git2/message.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/include/git2/message.h b/include/git2/message.h index b42cb7677..e20173f3f 100644 --- a/include/git2/message.h +++ b/include/git2/message.h @@ -23,7 +23,7 @@ GIT_BEGIN_DECL * * Optionally, can remove lines starting with a "#". * - * @param message_out The user allocated buffer which will be filled with + * @param out The user-allocated buffer which will be filled with * the cleaned up message. Pass NULL if you just want to get the size of the * prettified message as the output value. * @@ -36,7 +36,11 @@ GIT_BEGIN_DECL * @return -1 on error, else number of characters in prettified message * including the trailing NUL byte */ -GIT_EXTERN(int) git_message_prettify(char *message_out, size_t buffer_size, const char *message, int strip_comments); +GIT_EXTERN(int) git_message_prettify( + char *out, + size_t buffer_size, + const char *message, + int strip_comments); /** @} */ GIT_END_DECL |