X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fwrbuf.c;h=a7910b67d9e74f0aee5c5a344f5c723d25b4c5e4;hb=ecc1ee5b177fdc11ed531dfe13b5c3aae52b2843;hp=83b296bfe68ed9c9c1b46f97d9d1ec6d3a1e548a;hpb=52188379291c43d463d4ee6742cf81a700541723;p=yaz-moved-to-github.git diff --git a/src/wrbuf.c b/src/wrbuf.c index 83b296b..a7910b6 100644 --- a/src/wrbuf.c +++ b/src/wrbuf.c @@ -78,6 +78,11 @@ int wrbuf_puts(WRBUF b, const char *buf) return 0; } +void wrbuf_vputs(const char *buf, void *client_data) +{ + wrbuf_write((WRBUF) client_data, buf, strlen(buf)); +} + int wrbuf_puts_replace_char(WRBUF b, const char *buf, const char from, const char to) {