diff options
author | Pierre Habouzit <madcoder@debian.org> | 2007-09-20 00:42:13 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-09-21 03:31:18 -0700 |
commit | 7a33bcbe802080f3a926e93d66b65ff7c5e8c5ed (patch) | |
tree | ed4a77eef3125b2b9bceb5adb63d8df51fcacc9f /quote.h | |
parent | 663af3422a648e87945e4d8c0cc3e13671f2bbde (diff) | |
download | git-7a33bcbe802080f3a926e93d66b65ff7c5e8c5ed.tar.gz |
sq_quote_argv and add_to_string rework with strbuf's.
* sq_quote_buf is made public, and works on a strbuf.
* sq_quote_argv also works on a strbuf.
* make sq_quote_argv take a "maxlen" argument to check the buffer won't grow
too big.
Signed-off-by: Pierre Habouzit <madcoder@debian.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'quote.h')
-rw-r--r-- | quote.h | 9 |
1 files changed, 3 insertions, 6 deletions
@@ -29,13 +29,10 @@ */ extern void sq_quote_print(FILE *stream, const char *src); -extern char *sq_quote_argv(const char** argv, int count); -/* - * Append a string to a string buffer, with or without shell quoting. - * Return true if the buffer overflowed. - */ -extern int add_to_string(char **ptrp, int *sizep, const char *str, int quote); +extern void sq_quote_buf(struct strbuf *, const char *src); +extern void sq_quote_argv(struct strbuf *, const char **argv, int count, + size_t maxlen); /* This unwraps what sq_quote() produces in place, but returns * NULL if the input does not look like what sq_quote would have |