mirror of
https://github.com/git/git.git
synced 2024-11-24 10:26:17 +08:00
c5aa6db64f
This is a simple function that will interpret a string as a whitespace delimited list of values, and add those values into the array. Note: this function does not (yet) offer to split by arbitrary delimiters, or keep empty values in case of runs of whitespace, or de-quote Unix shell style. All fo this functionality can be added later, when and if needed. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
28 lines
809 B
C
28 lines
809 B
C
#ifndef ARGV_ARRAY_H
|
|
#define ARGV_ARRAY_H
|
|
|
|
extern const char *empty_argv[];
|
|
|
|
struct argv_array {
|
|
const char **argv;
|
|
int argc;
|
|
int alloc;
|
|
};
|
|
|
|
#define ARGV_ARRAY_INIT { empty_argv, 0, 0 }
|
|
|
|
void argv_array_init(struct argv_array *);
|
|
void argv_array_push(struct argv_array *, const char *);
|
|
__attribute__((format (printf,2,3)))
|
|
void 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 **);
|
|
void argv_array_pop(struct argv_array *);
|
|
/* Splits by whitespace; does not handle quoted arguments! */
|
|
void argv_array_split(struct argv_array *, const char *);
|
|
void argv_array_clear(struct argv_array *);
|
|
const char **argv_array_detach(struct argv_array *);
|
|
|
|
#endif /* ARGV_ARRAY_H */
|