diff options
Diffstat (limited to 'busybox/libbb/bb_asprintf.c')
-rw-r--r-- | busybox/libbb/bb_asprintf.c | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/busybox/libbb/bb_asprintf.c b/busybox/libbb/bb_asprintf.c new file mode 100644 index 0000000..a3ba424 --- /dev/null +++ b/busybox/libbb/bb_asprintf.c @@ -0,0 +1,22 @@ +/* + Copyright (C) 2002 Vladimir Oleynik <dzo@simtreas.ru> +*/ + +#include <stdlib.h> +#include <stdio.h> +#include <stdarg.h> +#include "libbb.h" + +void bb_xasprintf(char **string_ptr, const char *format, ...) +{ + va_list p; + int r; + + va_start(p, format); + r = vasprintf(string_ptr, format, p); + va_end(p); + + if (r < 0) { + bb_perror_msg_and_die("bb_xasprintf"); + } +} |