2 * UCW Library -- A simple growing buffer for byte-sized items.
4 * (c) 2004 Martin Mares <mj@ucw.cz>
6 * This software may be freely distributed and used according to the terms
7 * of the GNU Lesser General Public License.
13 #define GBUF_TYPE byte
14 #define GBUF_PREFIX(x) bb_##x
17 char *bb_vprintf(bb_t *bb, const char *fmt, va_list args);
18 char *bb_printf(bb_t *bb, const char *fmt, ...);
19 char *bb_vprintf_at(bb_t *bb, uns ofs, const char *fmt, va_list args);
20 char *bb_printf_at(bb_t *bb, uns ofs, const char *fmt, ...);