| 1560 | } |
| 1561 | |
| 1562 | void graph_show_oneline(struct git_graph *graph) |
| 1563 | { |
| 1564 | struct strbuf msgbuf = STRBUF_INIT; |
| 1565 | |
| 1566 | graph_show_line_prefix(default_diffopt); |
| 1567 | |
| 1568 | if (!graph) |
| 1569 | return; |
| 1570 | |
| 1571 | graph_next_line(graph, &msgbuf); |
| 1572 | fwrite(msgbuf.buf, sizeof(char), msgbuf.len, graph->revs->diffopt.file); |
| 1573 | strbuf_release(&msgbuf); |
| 1574 | } |
| 1575 | |
| 1576 | void graph_show_padding(struct git_graph *graph) |
| 1577 | { |
no test coverage detected