| 93 | static error global_error = { NULL, 0 }; |
| 94 | |
| 95 | CJSON_PUBLIC(const char *) cJSON_GetErrorPtr(void) |
| 96 | { |
| 97 | return (const char*) (global_error.json + global_error.position); |
| 98 | } |
| 99 | |
| 100 | CJSON_PUBLIC(char *) cJSON_GetStringValue(const cJSON * const item) |
| 101 | { |
nothing calls this directly
no outgoing calls
no test coverage detected