aboutsummaryrefslogtreecommitdiff
path: root/quote.h
diff options
context:
space:
mode:
authorJacob Keller <jacob.keller@gmail.com>2016-02-29 14:58:34 -0800
committerJunio C Hamano <gitster@pobox.com>2016-03-01 12:24:15 -0800
commite70986d72515b7601aea7d8d86a9d3bed53866f3 (patch)
tree96d0f36576ee89c454913b92d372096215a70cd7 /quote.h
parent7dad2633348423191844eef49022a9013242d6ef (diff)
downloadgit-e70986d72515b7601aea7d8d86a9d3bed53866f3.tar.gz
git-e70986d72515b7601aea7d8d86a9d3bed53866f3.tar.xz
quote: implement sq_quotef()
Signed-off-by: Jacob Keller <jacob.keller@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'quote.h')
-rw-r--r--quote.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/quote.h b/quote.h
index 99e04d34b..6c53a2cc6 100644
--- a/quote.h
+++ b/quote.h
@@ -25,10 +25,13 @@ struct strbuf;
* sq_quote_buf() writes to an existing buffer of specified size; it
* will return the number of characters that would have been written
* excluding the final null regardless of the buffer size.
+ *
+ * sq_quotef() quotes the entire formatted string as a single result.
*/
extern void sq_quote_buf(struct strbuf *, const char *src);
extern void sq_quote_argv(struct strbuf *, const char **argv, size_t maxlen);
+extern void sq_quotef(struct strbuf *, const char *fmt, ...);
/* This unwraps what sq_quote() produces in place, but returns
* NULL if the input does not look like what sq_quote would have