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