MCPcopy Create free account
hub / github.com/ading2210/linuxpdf / JSONValue

Class JSONValue

tinyemu/json.h:43–52  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

41} JSONString;
42
43typedef struct JSONValue {
44 JSONTypeEnum type;
45 union {
46 JSONString *str;
47 int int32;
48 BOOL b;
49 struct JSONObject *obj;
50 struct JSONArray *array;
51 } u;
52} JSONValue;
53
54typedef struct JSONProperty {
55 JSONValue name;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected