| 41 | } JSONString; |
| 42 | |
| 43 | typedef 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 | |
| 54 | typedef struct JSONProperty { |
| 55 | JSONValue name; |
nothing calls this directly
no outgoing calls
no test coverage detected