| 63 | } JSONObject; |
| 64 | |
| 65 | typedef struct JSONArray { |
| 66 | int len; |
| 67 | int size; |
| 68 | JSONValue *tab; |
| 69 | } JSONArray; |
| 70 | |
| 71 | JSONValue json_string_new2(const char *str, int len); |
| 72 | JSONValue json_string_new(const char *str); |
nothing calls this directly
no outgoing calls
no test coverage detected