| 357 | } |
| 358 | |
| 359 | void strbuf_add_wrapped_bytes(struct strbuf *buf, const char *data, int len, |
| 360 | int indent, int indent2, int width) |
| 361 | { |
| 362 | char *tmp = xstrndup(data, len); |
| 363 | strbuf_add_wrapped_text(buf, tmp, indent, indent2, width); |
| 364 | free(tmp); |
| 365 | } |
| 366 | |
| 367 | void strbuf_utf8_replace(struct strbuf *sb_src, int pos, int width, |
| 368 | const char *subst) |
no test coverage detected