initial load of upstream version 1.06.32
[xmlrpc-c] / lib / util / include / casprintf.h
1 #ifndef CASPRINTF_H_INCLUDED
2 #define CASPRINTF_H_INCLUDED
3
4 #include <stdarg.h>
5
6 #include "c_util.h"
7
8 extern const char * const strsol;
9
10 void
11 cvasprintf(const char ** const retvalP,
12            const char *  const fmt,
13            va_list             varargs);
14
15 void GNU_PRINTF_ATTR(2,3)
16 casprintf(const char ** const retvalP, const char * const fmt, ...);
17
18 void
19 strfree(const char * const string);
20
21 #endif