| 119 | }; |
| 120 | |
| 121 | static inline void graph_line_addch(struct graph_line *line, int c) |
| 122 | { |
| 123 | strbuf_addch(line->buf, c); |
| 124 | line->width++; |
| 125 | } |
| 126 | |
| 127 | static inline void graph_line_addchars(struct graph_line *line, int c, size_t n) |
| 128 | { |
no test coverage detected