]> mj.ucw.cz Git - libucw.git/blobdiff - lib/fastbuf.h
WT_LINK added into WORD_TYPES_META
[libucw.git] / lib / fastbuf.h
index ebc69955fb7720e7ebc192651745d705ba8c5d10..a370c45be8995155190b5eb61079812a685178e4 100644 (file)
@@ -15,6 +15,7 @@
 #endif
 
 #include <string.h>
+#include <stdarg.h>
 
 #include "lib/unaligned.h"
 
@@ -345,4 +346,9 @@ bdirect_write_commit(struct fastbuf *f, byte *pos)
   f->bptr = pos;
 }
 
+/* Formatted output */
+
+int bprintf(struct fastbuf *b, byte *msg, ...);
+int vbprintf(struct fastbuf *b, byte *msg, va_list args);
+
 #endif