]> mj.ucw.cz Git - libucw.git/blob - lib/printf.h
As usually, stuff in lib/* is LGPL'ed.
[libucw.git] / lib / printf.h
1 /*
2  *      Sherlock Library -- auto-resizable printf() functions
3  *
4  *      (c) 2002, Robert Spalek <robert@ucw.cz>
5  *
6  *      This software may be freely distributed and used according to the terms
7  *      of the GNU Lesser General Public License.
8  */
9
10 #ifndef _LIB_PRINTF_H
11 #define _LIB_PRINTF_H
12
13 #include <stdarg.h>
14
15 /* The following functions are NOT reentrable.  */
16
17 byte *vxprintf(char *msg, va_list v);
18 byte *xprintf(char *msg, ...) __attribute__((format(printf,1,2)));
19
20 #endif