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

Function fprintf_ln

strbuf.c:948–958  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

946}
947
948int fprintf_ln(FILE *fp, const char *fmt, ...)
949{
950 int ret;
951 va_list ap;
952 va_start(ap, fmt);
953 ret = vfprintf(fp, fmt, ap);
954 va_end(ap);
955 if (ret < 0 || putc('\n', fp) == EOF)
956 return -1;
957 return ret + 1;
958}
959
960char *xstrdup_tolower(const char *string)
961{

Callers 15

test_bitmap_walkFunction · 0.85
help_unknown_cmdFunction · 0.85
help_unknown_refFunction · 0.85
git_tcp_connect_sockFunction · 0.85
error_with_patchFunction · 0.85
handle_aliasFunction · 0.85
show_diff_of_diffFunction · 0.85
parse_attr_lineFunction · 0.85
update_pathsFunction · 0.85
do_rerere_one_pathFunction · 0.85
rerere_forget_one_pathFunction · 0.85
refs_fsckFunction · 0.85

Calls

no outgoing calls

Tested by 2

test_bitmap_walkFunction · 0.68