summaryrefslogtreecommitdiff
path: root/argv-array.h
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2018-05-21 14:54:27 (GMT)
committerJunio C Hamano <gitster@pobox.com>2018-05-22 02:58:50 (GMT)
commit342c513a4ae100354097a9ca99a080eeb7e70c0b (patch)
tree86454cb22bbe18f45869ed4f6a3f50cdcb9ed904 /argv-array.h
parent3f1c1c360080114fcc9492211601f41d56112e3c (diff)
downloadgit-342c513a4ae100354097a9ca99a080eeb7e70c0b.zip
git-342c513a4ae100354097a9ca99a080eeb7e70c0b.tar.gz
git-342c513a4ae100354097a9ca99a080eeb7e70c0b.tar.bz2
argv-array: return the pushed string from argv_push*()
Such an API change allows us to use an argv_array this way: struct argv_array to_free = ARGV_ARRAY_INIT; const char *msg; if (some condition) { msg = "constant string message"; ... other logic ... } else { msg = argv_array_pushf(&to_free, "format %s", var); } ... use "msg" ... ... do other things ... argv_array_clear(&to_free); Note that argv_array_pushl() and argv_array_pushv() are used to push one or more strings with a single call, so we do not return any one of these strings from these two functions in order to reduce the chance to misuse the API. Signed-off-by: Junio C Hamano <gitster@pobox.com> Signed-off-by: Martin Ă…gren <martin.agren@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'argv-array.h')
-rw-r--r--argv-array.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/argv-array.h b/argv-array.h
index 29056e4..715c93b 100644
--- a/argv-array.h
+++ b/argv-array.h
@@ -12,9 +12,9 @@ struct argv_array {
#define ARGV_ARRAY_INIT { empty_argv, 0, 0 }
void argv_array_init(struct argv_array *);
-void argv_array_push(struct argv_array *, const char *);
+const char *argv_array_push(struct argv_array *, const char *);
__attribute__((format (printf,2,3)))
-void argv_array_pushf(struct argv_array *, const char *fmt, ...);
+const char *argv_array_pushf(struct argv_array *, const char *fmt, ...);
LAST_ARG_MUST_BE_NULL
void argv_array_pushl(struct argv_array *, ...);
void argv_array_pushv(struct argv_array *, const char **);