MCPcopy Create free account
hub / github.com/0xShug0/audio.cpp / cJSON_DetachItemFromObjectCaseSensitive

Function cJSON_DetachItemFromObjectCaseSensitive

external/cJSON/cJSON.c:2316–2321  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2314}
2315
2316CJSON_PUBLIC(cJSON *) cJSON_DetachItemFromObjectCaseSensitive(cJSON *object, const char *string)
2317{
2318 cJSON *to_detach = cJSON_GetObjectItemCaseSensitive(object, string);
2319
2320 return cJSON_DetachItemViaPointer(object, to_detach);
2321}
2322
2323CJSON_PUBLIC(void) cJSON_DeleteItemFromObject(cJSON *object, const char *string)
2324{

Calls 2

Tested by

no test coverage detected