Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.openwrt.org/project/libubox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'blobmsg_json.h')
-rw-r--r--blobmsg_json.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/blobmsg_json.h b/blobmsg_json.h
index cd9ed33..9dfc02d 100644
--- a/blobmsg_json.h
+++ b/blobmsg_json.h
@@ -42,4 +42,18 @@ static inline char *blobmsg_format_json_indent(struct blob_attr *attr, bool list
return blobmsg_format_json_with_cb(attr, list, NULL, NULL, indent);
}
+char *blobmsg_format_json_value_with_cb(struct blob_attr *attr,
+ blobmsg_json_format_t cb, void *priv,
+ int indent);
+
+static inline char *blobmsg_format_json_value(struct blob_attr *attr)
+{
+ return blobmsg_format_json_value_with_cb(attr, NULL, NULL, -1);
+}
+
+static inline char *blobmsg_format_json_value_indent(struct blob_attr *attr, int indent)
+{
+ return blobmsg_format_json_value_with_cb(attr, NULL, NULL, indent);
+}
+
#endif