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.h')
-rw-r--r--blobmsg.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/blobmsg.h b/blobmsg.h
index 056f79a..44f1f3b 100644
--- a/blobmsg.h
+++ b/blobmsg.h
@@ -183,6 +183,11 @@ static inline uint64_t blobmsg_get_u64(struct blob_attr *attr)
return be64_to_cpu(*(uint64_t *) blobmsg_data(attr));
}
+static inline char *blobmsg_get_string(struct blob_attr *attr)
+{
+ return blobmsg_data(attr);
+}
+
void *blobmsg_alloc_string_buffer(struct blob_buf *buf, const char *name, int maxlen);
void blobmsg_add_string_buffer(struct blob_buf *buf);