| 125 | } |
| 126 | |
| 127 | static inline void graph_line_addchars(struct graph_line *line, int c, size_t n) |
| 128 | { |
| 129 | strbuf_addchars(line->buf, c, n); |
| 130 | line->width += n; |
| 131 | } |
| 132 | |
| 133 | static inline void graph_line_addstr(struct graph_line *line, const char *s) |
| 134 | { |
no test coverage detected