]> mj.ucw.cz Git - libucw.git/blobdiff - lib/bbuf.h
Merge with git+ssh://cvs.ucw.cz/projects/sherlock/GIT/sherlock.git
[libucw.git] / lib / bbuf.h
index ad7ce39da7160f00aef9cd149d20e9c90d739639..2585bec3c1fa9bd170bef9f06c160cca9bada5e7 100644 (file)
@@ -14,7 +14,9 @@
 #define        GBUF_PREFIX(x)  bb_##x
 #include "lib/gbuf.h"
 
-char *bb_ofs_vprintf(bb_t *bb, uns ofs, char *fmt, va_list args);
-char *bb_ofs_printf(bb_t *bb, uns ofs, char *fmt, ...);
+char *bb_vprintf(bb_t *bb, char *fmt, va_list args);
+char *bb_printf(bb_t *bb, char *fmt, ...);
+char *bb_vprintf_at(bb_t *bb, uns ofs, char *fmt, va_list args);
+char *bb_printf_at(bb_t *bb, uns ofs, char *fmt, ...);
 
 #endif