| 391 | } |
| 392 | |
| 393 | void strbuf_add_commented_lines(struct strbuf *out, const char *buf, |
| 394 | size_t size, const char *comment_prefix) |
| 395 | { |
| 396 | add_lines(out, comment_prefix, buf, size, 1); |
| 397 | } |
| 398 | |
| 399 | void strbuf_commented_addf(struct strbuf *sb, const char *comment_prefix, |
| 400 | const char *fmt, ...) |
no test coverage detected