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

Function err

add-patch.c:419–429  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

417}
418
419__attribute__((format (printf, 2, 3)))
420static void err(struct add_p_state *s, const char *fmt, ...)
421{
422 va_list args;
423
424 va_start(args, fmt);
425 fputs(s->cfg.error_color, stdout);
426 vprintf(fmt, args);
427 puts(s->cfg.reset_color_interactive);
428 va_end(args);
429}
430
431LAST_ARG_MUST_BE_NULL
432static void setup_child_process(struct add_p_state *s,

Callers 4

apply_for_checkoutFunction · 0.85
patch_update_fileFunction · 0.85
run_add_p_commonFunction · 0.85
run_add_p_indexFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected