summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: f29d595)
raw | patch | inline | side by side (parent: f29d595)
author | René Scharfe <rene.scharfe@lsrfire.ath.cx> | |
Sat, 10 Nov 2007 11:16:05 +0000 (12:16 +0100) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Sun, 11 Nov 2007 10:04:46 +0000 (02:04 -0800) |
Add a new function, strbuf_adddup(), that appends a duplicate of a
part of a struct strbuf to end of the latter.
Signed-off-by: Rene Scharfe <rene.scharfe@lsrfire.ath.cx>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
part of a struct strbuf to end of the latter.
Signed-off-by: Rene Scharfe <rene.scharfe@lsrfire.ath.cx>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
strbuf.c | patch | blob | history | |
strbuf.h | patch | blob | history |
diff --git a/strbuf.c b/strbuf.c
index 536b43204e228a8b7ec8fc3fb44c555157253f8c..dbd8c4bcfb2f8549b8713a8d9fbbfd8adcd0088c 100644 (file)
--- a/strbuf.c
+++ b/strbuf.c
strbuf_setlen(sb, sb->len + len);
}
+void strbuf_adddup(struct strbuf *sb, size_t pos, size_t len)
+{
+ strbuf_grow(sb, len);
+ memcpy(sb->buf + sb->len, sb->buf + pos, len);
+ strbuf_setlen(sb, sb->len + len);
+}
+
void strbuf_addf(struct strbuf *sb, const char *fmt, ...)
{
int len;
diff --git a/strbuf.h b/strbuf.h
index 21d894415440094997fb71788b7ec8aa53ad2b73..13919123dc5261e7b8e4a4fdfc696f2355482b6c 100644 (file)
--- a/strbuf.h
+++ b/strbuf.h
static inline void strbuf_addbuf(struct strbuf *sb, struct strbuf *sb2) {
strbuf_add(sb, sb2->buf, sb2->len);
}
+extern void strbuf_adddup(struct strbuf *sb, size_t pos, size_t len);
typedef void (*expand_fn_t) (struct strbuf *sb, const char *placeholder, void *context);
extern void strbuf_expand(struct strbuf *sb, const char *format, const char **placeholders, expand_fn_t fn, void *context);