Renamed AC var YAZ_VERSION_HEX to VERSION_HEX
[yaz-moved-to-github.git] / include / yaz / wrbuf.h
index 37f96e7..7d757a3 100644 (file)
@@ -57,8 +57,10 @@ YAZ_EXPORT void wrbuf_rewind(WRBUF b);
 
 /** \brief writes (append) buffer to WRBUF */
 YAZ_EXPORT int wrbuf_write(WRBUF b, const char *buf, int size);
-/** \brief appends C-string to WRBUF */
+/** \brief appends C-string to WRBUF (returns int) */
 YAZ_EXPORT int wrbuf_puts(WRBUF b, const char *buf);
+/** \brief appends C-string to WRBUF (void) */
+YAZ_EXPORT void wrbuf_vputs(const char *buf, void *client_data);
 
 /** \brief writes buffer to WRBUF and XML encode (as CDATA) */
 YAZ_EXPORT int wrbuf_xmlputs_n(WRBUF b, const char *cp, int size);