summaryrefslogtreecommitdiff
path: root/json.h
diff options
context:
space:
mode:
authorGary E. Miller <gem@rellim.com>2019-05-17 13:08:22 -0700
committerGary E. Miller <gem@rellim.com>2019-05-17 13:08:22 -0700
commit031cb48dc3adfc2b239df98f0bbe99da15c3959c (patch)
treec92ad2b0b4fcaff201a7e6f232fbe6f8e0ad0944 /json.h
parentb8fb873ad159f1edf64e0aafa499010f2cab831e (diff)
downloadgpsd-031cb48dc3adfc2b239df98f0bbe99da15c3959c.tar.gz
json.h: Add bytes and ubytes to json_array_t.
No functional changes. Yet.
Diffstat (limited to 'json.h')
-rw-r--r--json.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/json.h b/json.h
index 55f3c2ce..62fdb009 100644
--- a/json.h
+++ b/json.h
@@ -42,6 +42,12 @@ struct json_array_t {
} strings;
struct {
int *store;
+ } bytes;
+ struct {
+ unsigned int *store;
+ } ubytes;
+ struct {
+ int *store;
} integers;
struct {
unsigned int *store;