MCPcopy Index your code
hub / github.com/git/git / strvec_pushl

Function strvec_pushl

strvec.c:42–51  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

40}
41
42void strvec_pushl(struct strvec *array, ...)
43{
44 va_list ap;
45 const char *arg;
46
47 va_start(ap, array);
48 while ((arg = va_arg(ap, const char *)))
49 strvec_push(array, arg);
50 va_end(ap);
51}
52
53void strvec_pushv(struct strvec *array, const char **items)
54{

Callers 15

spawn_daemonFunction · 0.85
do_reachable_revlistFunction · 0.85
submodule_has_commitsFunction · 0.85
submodule_needs_pushingFunction · 0.85
get_next_submoduleFunction · 0.85
is_submodule_modifiedFunction · 0.85
submodule_uses_gitfileFunction · 0.85
bad_to_remove_submoduleFunction · 0.85
submodule_reset_indexFunction · 0.85
submodule_move_headFunction · 0.85

Calls 1

strvec_pushFunction · 0.85