From 98acc837a14c2ab1975b38b93cb028e87e47ad4a Mon Sep 17 00:00:00 2001 From: Jeff King Date: Wed, 23 Feb 2011 04:50:19 -0500 Subject: strbuf: add fixed-length version of add_wrapped_text The function strbuf_add_wrapped_text takes a NUL-terminated string. This makes it annoying to wrap strings we have as a pointer and a length. Refactoring strbuf_add_wrapped_text and all of its sub-functions to handle fixed-length strings turned out to be really ugly. So this implementation is lame; it just strdups the text and operates on the NUL-terminated version. This should be fine as the strings we are wrapping are generally pretty short. If it becomes a problem, we can optimize later. Signed-off-by: Jeff King Signed-off-by: Junio C Hamano --- utf8.c | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'utf8.c') diff --git a/utf8.c b/utf8.c index 84cfc72e6d..8acbc660d3 100644 --- a/utf8.c +++ b/utf8.c @@ -405,6 +405,15 @@ new_line: } } +int strbuf_add_wrapped_bytes(struct strbuf *buf, const char *data, int len, + int indent, int indent2, int width) +{ + char *tmp = xstrndup(data, len); + int r = strbuf_add_wrapped_text(buf, tmp, indent, indent2, width); + free(tmp); + return r; +} + int is_encoding_utf8(const char *name) { if (!name) -- cgit v1.2.3