]> git.ipfire.org Git - thirdparty/git.git/blobdiff - sequencer.h
append_signoff: use size_t for string offsets
[thirdparty/git.git] / sequencer.h
index c5787c6b566bbc89caad1a099f4281fecba01766..06ff5ff0651bf54770d34dc57f8434d31decfb5b 100644 (file)
@@ -85,7 +85,14 @@ int rearrange_squash(void);
 
 extern const char sign_off_header[];
 
-void append_signoff(struct strbuf *msgbuf, int ignore_footer, unsigned flag);
+/*
+ * Append a signoff to the commit message in "msgbuf". The ignore_footer
+ * parameter specifies the number of bytes at the end of msgbuf that should
+ * not be considered at all. I.e., they are not checked for existing trailers,
+ * and the new signoff will be spliced into the buffer before those bytes.
+ */
+void append_signoff(struct strbuf *msgbuf, size_t ignore_footer, unsigned flag);
+
 void append_conflicts_hint(struct strbuf *msgbuf);
 int message_is_empty(const struct strbuf *sb,
                     enum commit_msg_cleanup_mode cleanup_mode);