| 68 | static error global_error = { NULL, 0 }; |
| 69 | |
| 70 | CJSON_PUBLIC(const char *) cJSON_GetErrorPtr(void) |
| 71 | { |
| 72 | return (const char*) (global_error.json + global_error.position); |
| 73 | } |
| 74 | |
| 75 | CJSON_PUBLIC(char *) cJSON_GetStringValue(cJSON *item) { |
| 76 | if (!cJSON_IsString(item)) { |
nothing calls this directly
no outgoing calls
no test coverage detected