From patchwork Wed Nov 4 20:04:00 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [1/8] QJSon: Introduce qobject_from_json_va() From: Luiz Capitulino X-Patchwork-Id: 37613 Message-Id: <1257365047-25895-2-git-send-email-lcapitulino@redhat.com> To: qemu-devel@nongnu.org Cc: pbonzini@redhat.com, aliguori@us.ibm.com, kraxel@redhat.com, hollisb@us.ibm.com Date: Wed, 4 Nov 2009 18:04:00 -0200 Simple wrapper to parse_json() that accepts a va_list, will be used by QError. Signed-off-by: Luiz Capitulino --- qjson.c | 5 +++++ qjson.h | 2 ++ 2 files changed, 7 insertions(+), 0 deletions(-) diff --git a/qjson.c b/qjson.c index 5f92996..02fcd83 100644 --- a/qjson.c +++ b/qjson.c @@ -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); +} diff --git a/qjson.h b/qjson.h index 0c94954..da0d653 100644 --- a/qjson.h +++ b/qjson.h @@ -14,10 +14,12 @@ #ifndef QJSON_H #define QJSON_H +#include #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 */