| 2122 | } |
| 2123 | |
| 2124 | CJSON_PUBLIC(cJSON *) cJSON_DetachItemFromObject(cJSON *object, const char *string) |
| 2125 | { |
| 2126 | cJSON *to_detach = cJSON_GetObjectItem(object, string); |
| 2127 | |
| 2128 | return cJSON_DetachItemViaPointer(object, to_detach); |
| 2129 | } |
| 2130 | |
| 2131 | CJSON_PUBLIC(cJSON *) cJSON_DetachItemFromObjectCaseSensitive(cJSON *object, const char *string) |
| 2132 | { |
no test coverage detected