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
path: root/blob.h
diff options
context:
space:
mode:
authorAndré Gaul <andre@gaul.io>2016-11-19 20:55:49 +0300
committerFelix Fietkau <nbd@nbd.name>2017-01-04 23:36:31 +0300
commit7f671b1e68a6664b5baf3e3cffc1bb0880984267 (patch)
treeb8c212bc9c1fcf230975f5a0e2d86bfec6420c5c /blob.h
parent0fe13749d095ca22c788e55902979323e85367c3 (diff)
blobmsg: add support for double
This adds support for double floating point type to make it more JSON compatible. For type checking it also adds a stub BLOB_ATTR_DOUBLE type. If necessary, the accessor functions for blob can be added later Signed-off-by: André Gaul <andre@gaul.io> Signed-off-by: Felix Fietkau <nbd@nbd.name>
Diffstat (limited to 'blob.h')
-rw-r--r--blob.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/blob.h b/blob.h
index 307523d..a092f5d 100644
--- a/blob.h
+++ b/blob.h
@@ -39,6 +39,7 @@ enum {
BLOB_ATTR_INT16,
BLOB_ATTR_INT32,
BLOB_ATTR_INT64,
+ BLOB_ATTR_DOUBLE,
BLOB_ATTR_LAST
};