]> mj.ucw.cz Git - libucw.git/blobdiff - lib/bbuf.h
Got rid of some more hidden references to Sherlock namespace in our modules.
[libucw.git] / lib / bbuf.h
index c62511c4f85b9e33f13a98a662b90a663d118a22..22e62bb0402a26d768fd3a1cceb8c666e07267dc 100644 (file)
@@ -1,5 +1,5 @@
 /*
- *     A simple growing buffer for byte-sized items.
+ *     UCW Library -- A simple growing buffer for byte-sized items.
  *
  *     (c) 2004 Martin Mares <mj@ucw.cz>
  *
@@ -14,4 +14,9 @@
 #define        GBUF_PREFIX(x)  bb_##x
 #include "lib/gbuf.h"
 
+char *bb_vprintf(bb_t *bb, const char *fmt, va_list args);
+char *bb_printf(bb_t *bb, const char *fmt, ...);
+char *bb_vprintf_at(bb_t *bb, uns ofs, const char *fmt, va_list args);
+char *bb_printf_at(bb_t *bb, uns ofs, const char *fmt, ...);
+
 #endif