Updated json_entities

This commit is contained in:
2023-06-27 23:16:26 +01:00
parent 1e510411dc
commit 14ad503d4d
4 changed files with 94 additions and 27 deletions

View File

@@ -23,10 +23,10 @@ typedef enum {
JSON_TRUE,
JSON_FALSE,
JSON_NULL,
} jval_type_t;
} jval_type;
struct json_val {
jval_type_t type;
jval_type type;
union {
jcoll_t *collection;
const char *string;