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

Function graph_show_padding

graph.c:1576–1588  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1574}
1575
1576void graph_show_padding(struct git_graph *graph)
1577{
1578 struct strbuf msgbuf = STRBUF_INIT;
1579
1580 graph_show_line_prefix(default_diffopt);
1581
1582 if (!graph)
1583 return;
1584
1585 graph_padding_line(graph, &msgbuf);
1586 fwrite(msgbuf.buf, sizeof(char), msgbuf.len, graph->revs->diffopt.file);
1587 strbuf_release(&msgbuf);
1588}
1589
1590int graph_show_remainder(struct git_graph *graph)
1591{

Callers 3

show_logFunction · 0.85
graph_show_commitFunction · 0.85
show_commitFunction · 0.85

Calls 3

graph_show_line_prefixFunction · 0.85
graph_padding_lineFunction · 0.85
strbuf_releaseFunction · 0.85

Tested by

no test coverage detected