blob: 3f8eda8321aa5c183b1bd24c819482a56c76bb3b (
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
|
/* Copyright (C) 2013 Gentoo Foundation
* Licensed under LGPL v2.1 or later, see the file COPYING.LIB in this tarball.
*/
#include <stdio.h>
#include <stdarg.h>
#include <obstack.h>
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;
}
libc_hidden_def(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;
}
|