mirror of
https://github.com/rafagafe/tiny-json.git
synced 2025-03-14 03:55:29 +00:00
speed up large arrays
This commit is contained in:
parent
2f6c919986
commit
a2fdcc20e0
@ -43,7 +43,10 @@ typedef struct json_s {
|
|||||||
char const* name;
|
char const* name;
|
||||||
union {
|
union {
|
||||||
char const* value;
|
char const* value;
|
||||||
|
struct {
|
||||||
struct json_s* child;
|
struct json_s* child;
|
||||||
|
struct json_s* last_child;
|
||||||
|
};
|
||||||
} u;
|
} u;
|
||||||
jsonType_t type;
|
jsonType_t type;
|
||||||
} json_t;
|
} json_t;
|
||||||
|
Loading…
Reference in New Issue
Block a user