blobmsg_json: export blobmsg_add_object
authorFelix Fietkau <nbd@openwrt.org>
Sun, 6 Jan 2013 01:15:48 +0000 (02:15 +0100)
committerFelix Fietkau <nbd@openwrt.org>
Sun, 6 Jan 2013 01:15:48 +0000 (02:15 +0100)
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
blobmsg_json.c
blobmsg_json.h

index badf87e..f629d76 100644 (file)
@@ -16,7 +16,7 @@
 #include "blobmsg.h"
 #include "blobmsg_json.h"
 
-static bool blobmsg_add_object(struct blob_buf *b, json_object *obj)
+bool blobmsg_add_object(struct blob_buf *b, json_object *obj)
 {
        json_object_object_foreach(obj, key, val) {
                if (!blobmsg_add_json_element(b, key, val))
index 242657d..4471a4e 100644 (file)
@@ -20,6 +20,7 @@
 #include <stdbool.h>
 #include "blobmsg.h"
 
+bool blobmsg_add_object(struct blob_buf *b, json_object *obj);
 bool blobmsg_add_json_element(struct blob_buf *b, const char *name, json_object *obj);
 bool blobmsg_add_json_from_string(struct blob_buf *b, const char *str);