MCPcopy Create free account
hub / github.com/git/git / write_name_quoted

Function write_name_quoted

quote.c:328–336  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

326}
327
328void write_name_quoted(const char *name, FILE *fp, int terminator)
329{
330 if (terminator) {
331 quote_c_style(name, NULL, fp, 0);
332 } else {
333 fputs(name, fp);
334 }
335 fputc(terminator, fp);
336}
337
338void write_name_quoted_relative(const char *name, const char *prefix,
339 FILE *fp, int terminator)

Callers 11

show_raw_diffFunction · 0.85
numstat_patch_listFunction · 0.85
show_numstatFunction · 0.85
diff_flush_rawFunction · 0.85
flush_one_pairFunction · 0.85
write_filename_infoFunction · 0.85
show_worktree_porcelainFunction · 0.85
output_patternFunction · 0.85
last_modified_emitFunction · 0.85
check_rulesFunction · 0.85

Calls 1

quote_c_styleFunction · 0.85

Tested by

no test coverage detected