summaryrefslogtreecommitdiff
path: root/Utilities/cmxmlrpc/casprintf.c
blob: 1fcc7741f0a5087fada70e7e433169f5d9a32bd1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#define _GNU_SOURCE
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>

#include "xmlrpc_config.h"  /* For HAVE_ASPRINTF */
#include "casprintf.h"

void GNU_PRINTF_ATTR(2,3)
casprintf(const char ** const retvalP, const char * const fmt, ...) {

    char *retval;

    va_list varargs;  /* mysterious structure used by variable arg facility */

    va_start(varargs, fmt); /* start up the mysterious variable arg facility */

#if HAVE_ASPRINTF
    vasprintf(&retval, fmt, varargs);
#else
    retval = malloc(8192);
    vsnprintf(retval, 8192, fmt, varargs);
#endif
    *retvalP = retval;
}



void
strfree(const char * const string) {
    free((void *)string);
}