| 131 | } |
| 132 | |
| 133 | static inline void graph_line_addstr(struct graph_line *line, const char *s) |
| 134 | { |
| 135 | strbuf_addstr(line->buf, s); |
| 136 | line->width += strlen(s); |
| 137 | } |
| 138 | |
| 139 | static inline void graph_line_addcolor(struct graph_line *line, unsigned short color) |
| 140 | { |
no test coverage detected