From 10d12e77d5cdffd064719356a87f839225916a4a Mon Sep 17 00:00:00 2001 From: "Anthony G. Basile" Date: Thu, 13 Jun 2013 10:54:39 -0400 Subject: libc/misc/gnu/obprintf.c: implement obstack_printf and obstack_vprintf This adds a straight forward implementation for obstack_printf and obstack_vprintf on uClibc's already existing obstack_grow and vasprintf. It does not attempt to port over glibc's implementation in terms of _IO_* structs and functions. Signed-off-by: Anthony G. Basile Signed-off-by: Bernhard Reutner-Fischer --- libc/misc/gnu/Makefile.in | 2 +- libc/misc/gnu/obprintf.c | 35 +++++++++++++++++++++++++++++++++++ 2 files changed, 36 insertions(+), 1 deletion(-) create mode 100644 libc/misc/gnu/obprintf.c (limited to 'libc/misc') diff --git a/libc/misc/gnu/Makefile.in b/libc/misc/gnu/Makefile.in index d820746ed..5106b479b 100644 --- a/libc/misc/gnu/Makefile.in +++ b/libc/misc/gnu/Makefile.in @@ -7,7 +7,7 @@ subdirs += libc/misc/gnu -CSRC-$(UCLIBC_HAS_OBSTACK) := obstack.c +CSRC-$(UCLIBC_HAS_OBSTACK) := obstack.c obprintf.c MISC_GNU_DIR := $(top_srcdir)libc/misc/gnu MISC_GNU_OUT := $(top_builddir)libc/misc/gnu diff --git a/libc/misc/gnu/obprintf.c b/libc/misc/gnu/obprintf.c new file mode 100644 index 000000000..70c058fe5 --- /dev/null +++ b/libc/misc/gnu/obprintf.c @@ -0,0 +1,35 @@ +/* Copyright (C) 2013 Gentoo Foundation + * Licensed under LGPL v2.1 or later, see the file COPYING.LIB in this tarball. + */ + +#include +#include + +#ifdef _LIBC +# include +#else +# include "obstack.h" +#endif + +int +_obstack_vprintf (struct obstack *obstack, const char *format, va_list args) +{ + int n; + char *s; + n = vasprintf(&s, format, args); + obstack_grow(obstack, s, n); + return n; +} +weak_alias (_obstack_vprintf, obstack_vprintf) + +int +_obstack_printf (struct obstack *obstack, const char *format, ...) +{ + int n; + va_list ap; + va_start (ap, format); + n = _obstack_vprintf (obstack, format, ap); + va_end (ap); + return n; +} +weak_alias (_obstack_printf, obstack_printf) -- cgit v1.2.3