Files
ocserv/src/vasprintf.h
Nikos Mavrogiannopoulos 3de707b0fe introduced str_append_printf()
2014-06-26 13:46:31 +02:00

14 lines
222 B
C

#ifndef VASPRINTF_H
#define VASPRINTF_H
#include <config.h>
#include <string.h>
#ifndef HAVE_VASPRINTF
int _ocserv_vasprintf(char **strp, const char *fmt, va_list ap);
#define vasprintf _ocserv_vasprintf
#endif
#endif