X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;ds=sidebyside;f=lib%2Fbbuf.h;h=22e62bb0402a26d768fd3a1cceb8c666e07267dc;hb=3d7098f19d62bb9000048d1f36a2091e0fc263b0;hp=2585bec3c1fa9bd170bef9f06c160cca9bada5e7;hpb=e30a6049a172b94b9e54d502f7b8d96746cd2187;p=libucw.git diff --git a/lib/bbuf.h b/lib/bbuf.h index 2585bec3..22e62bb0 100644 --- a/lib/bbuf.h +++ b/lib/bbuf.h @@ -14,9 +14,9 @@ #define GBUF_PREFIX(x) bb_##x #include "lib/gbuf.h" -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, ...); +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