Fix spelling in comments
[qemu.git] / qjson.h
blob70d0afba54f8b150f81575e8833b6b4c0ec11ed6
1 /*
2 * QObject JSON integration
4 * Copyright IBM, Corp. 2009
6 * Authors:
7 * Anthony Liguori <aliguori@us.ibm.com>
9 * This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
10 * See the COPYING.LIB file in the top-level directory.
14 #ifndef QJSON_H
15 #define QJSON_H
17 #include <stdarg.h>
18 #include "qobject.h"
19 #include "qstring.h"
21 QObject *qobject_from_json(const char *string) GCC_FMT_ATTR(1, 0);
22 QObject *qobject_from_jsonf(const char *string, ...) GCC_FMT_ATTR(1, 2);
23 QObject *qobject_from_jsonv(const char *string, va_list *ap) GCC_FMT_ATTR(1, 0);
25 QString *qobject_to_json(const QObject *obj);
27 #endif /* QJSON_H */