| 2128 | } |
| 2129 | |
| 2130 | CJSON_PUBLIC(void) cJSON_DeleteItemFromObject(cJSON *object, const char *string) |
| 2131 | { |
| 2132 | cJSON_Delete(cJSON_DetachItemFromObject(object, string)); |
| 2133 | } |
| 2134 | |
| 2135 | CJSON_PUBLIC(void) cJSON_DeleteItemFromObjectCaseSensitive(cJSON *object, const char *string) |
| 2136 | { |
no test coverage detected