MCPcopy Index your code
hub / github.com/DaveGamble/cJSON / cJSON_DetachItemFromObjectCaseSensitive

Function cJSON_DetachItemFromObjectCaseSensitive

cJSON.c:2301–2306  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2299}
2300
2301CJSON_PUBLIC(cJSON *) cJSON_DetachItemFromObjectCaseSensitive(cJSON *object, const char *string)
2302{
2303 cJSON *to_detach = cJSON_GetObjectItemCaseSensitive(object, string);
2304
2305 return cJSON_DetachItemViaPointer(object, to_detach);
2306}
2307
2308CJSON_PUBLIC(void) cJSON_DeleteItemFromObject(cJSON *object, const char *string)
2309{

Calls 2

Used in the wild real call sites across dependent graphs

searching dependent graphs…