Signed-off-by: Felix Fietkau <nbd@openwrt.org>
#include "blobmsg.h"
#include "blobmsg_json.h"
+#ifdef JSONC
+ #include <json.h>
+#else
+ #include <json/json.h>
+#endif
+
bool blobmsg_add_object(struct blob_buf *b, json_object *obj)
{
json_object_object_foreach(obj, key, val) {
#ifndef __BLOBMSG_JSON_H
#define __BLOBMSG_JSON_H
-#ifdef JSONC
- #include <json.h>
-#else
- #include <json/json.h>
-#endif
+struct json_object;
+typedef struct json_object json_object;
#include <stdbool.h>
#include "blobmsg.h"