mirror of
https://github.com/git/git.git
synced 2024-10-31 22:37:54 +01:00
ff857e4ee8
The argv_array_detach function (and associated free() function) was really only useful for transferring ownership of the memory to a "struct child_process". Now that we have an internal argv_array in that struct, there are no callers left. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
23 lines
577 B
C
23 lines
577 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_pop(struct argv_array *);
|
|
void argv_array_clear(struct argv_array *);
|
|
|
|
#endif /* ARGV_ARRAY_H */
|