@@ -723,3 +723,8 @@ QObject *qobject_from_jsonf(const char *string, size_t *length, ...)
return obj;
}
+
+QObject *qobject_from_json_va(const char *string, va_list *ap)
+{
+ return parse_json(string, NULL, ap);
+}
@@ -14,10 +14,12 @@
#ifndef QJSON_H
#define QJSON_H
+#include <stdarg.h>
#include "qobject.h"
QObject *qobject_from_json(const char *string, size_t *length);
QObject *qobject_from_jsonf(const char *string, size_t *length, ...)
__attribute__((__format__ (__printf__, 1, 3)));
+QObject *qobject_from_json_va(const char *string, va_list *ap);
#endif /* QJSON_H */
Simple wrapper to parse_json() that accepts a va_list, will be used by QError. Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com> --- qjson.c | 5 +++++ qjson.h | 2 ++ 2 files changed, 7 insertions(+), 0 deletions(-)