| 142 | } |
| 143 | |
| 144 | static void graph_line_write_column(struct graph_line *line, const struct column *c, |
| 145 | char col_char) |
| 146 | { |
| 147 | if (c->color < column_colors_max) |
| 148 | graph_line_addcolor(line, c->color); |
| 149 | graph_line_addch(line, col_char); |
| 150 | if (c->color < column_colors_max) |
| 151 | graph_line_addcolor(line, column_colors_max); |
| 152 | } |
| 153 | |
| 154 | struct git_graph { |
| 155 | /* |
no test coverage detected