Comment WRBUF. Remove wrbuf_vputs
[yaz-moved-to-github.git] / src / wrbuf.c
index 0af3582..e6c53e8 100644 (file)
@@ -76,11 +76,6 @@ void wrbuf_puts(WRBUF b, const char *buf)
     wrbuf_write(b, buf, strlen(buf));
 }
 
-void wrbuf_vputs(const char *buf, void *client_data)
-{
-    wrbuf_write((WRBUF) client_data, buf, strlen(buf));
-}
-
 void wrbuf_puts_replace_char(WRBUF b, const char *buf, 
                             const char from, const char to)
 {