MCPcopy Create free account
hub / github.com/alibaba/CicadaPlayer / cJSON_DetachItemFromObjectCaseSensitive

Function cJSON_DetachItemFromObjectCaseSensitive

framework/utils/cJSON.c:2123–2128  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2121}
2122
2123CJSON_PUBLIC(cJSON *) cJSON_DetachItemFromObjectCaseSensitive(cJSON *object, const char *string)
2124{
2125cJSON *to_detach = cJSON_GetObjectItemCaseSensitive(object, string);
2126
2127return cJSON_DetachItemViaPointer(object, to_detach);
2128}
2129
2130CJSON_PUBLIC(void) cJSON_DeleteItemFromObject(cJSON *object, const char *string)
2131{

Calls 2

Tested by

no test coverage detected