]> mj.ucw.cz Git - libucw.git/blob - lib/printf.h
added v?xprintf() functions, they will be used in the filter dumper
[libucw.git] / lib / printf.h
1 /*
2  *      Sherlock Library -- auto-resizable printf() functions
3  *
4  *      (c) 2002, Robert Spalek <robert@ucw.cz>
5  */
6
7 #ifndef _LIB_PRINTF_H
8 #define _LIB_PRINTF_H
9
10 #include <stdarg.h>
11
12 /* The following functions are NOT reentrable.  */
13
14 byte *vxprintf(char *msg, va_list v);
15 byte *xprintf(char *msg, ...) __attribute__((format(printf,1,2)));
16
17 #endif