summaryrefslogtreecommitdiffstats
path: root/src/asprintf.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/asprintf.h')
-rw-r--r--src/asprintf.h33
1 files changed, 0 insertions, 33 deletions
diff --git a/src/asprintf.h b/src/asprintf.h
deleted file mode 100644
index 3b0072e..0000000
--- a/src/asprintf.h
+++ /dev/null
@@ -1,33 +0,0 @@
1#ifndef ASPRINTF_H
2#define ASPRINTF_H
3
4#ifdef HAVE_CONFIG_H
5#include <config.h>
6#endif
7
8#ifndef HAVE_VASPRINTF
9static inline int vasprintf(char **PTR, const char *TEMPLATE, va_list AP)
10{
11 int res;
12 res = vsnprintf(NULL, 32768, TEMPLATE, AP);
13 if (res > 0) {
14 *PTR = (char*)malloc(res+1);
15 res = vsnprintf(*PTR, res, TEMPLATE, AP);
16 }
17 return res;
18}
19#endif
20
21#ifndef HAVE_ASPRINTF
22static inline int asprintf(char **PTR, const char *TEMPLATE, ...)
23{
24 int res;
25 va_list AP;
26 va_start(AP, TEMPLATE);
27 res = vasprintf(PTR, TEMPLATE, AP);
28 va_end(AP);
29 return res;
30}
31#endif
32
33#endif /* ASPRINTF_H */