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:
authorFelix Fietkau <nbd@openwrt.org>2011-02-05 04:06:49 +0300
committerFelix Fietkau <nbd@openwrt.org>2011-02-05 04:06:49 +0300
commit5aed3c2d2ea7c3aadf73b4ee1fd342421dbb6056 (patch)
treef27f524d34d5c9385841807eb9eccc847eb45d6b /blobmsg.h
parent29598e3dc850c2edf721704bf00f6a825077ff6e (diff)
blomsg: add integer attribute accessor functions
Diffstat (limited to 'blobmsg.h')
-rw-r--r--blobmsg.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/blobmsg.h b/blobmsg.h
index dce5b85..e51c39d 100644
--- a/blobmsg.h
+++ b/blobmsg.h
@@ -139,6 +139,26 @@ static inline int blobmsg_buf_init(struct blob_buf *buf)
return blob_buf_init(buf, BLOBMSG_TYPE_TABLE);
}
+static inline uint8_t blobmsg_get_u8(struct blob_attr *attr)
+{
+ return *(uint8_t *) blobmsg_data(attr);
+}
+
+static inline uint16_t blobmsg_get_u16(struct blob_attr *attr)
+{
+ return *(uint16_t *) blobmsg_data(attr);
+}
+
+static inline uint32_t blobmsg_get_u32(struct blob_attr *attr)
+{
+ return *(uint32_t *) blobmsg_data(attr);
+}
+
+static inline uint64_t blobmsg_get_u64(struct blob_attr *attr)
+{
+ return *(uint64_t *) 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);