Function cJSON_DetachItemFromObjectCaseSensitive
Synopsis
#include <cJSON.h>
cJSON * cJSON_DetachItemFromObjectCaseSensitive(cJSON *object, const char *string)
Description
No description yet.
Mentioned in
- Getting Started / Objects
Source
Lines 2241-2246 in cJSON.c. Line 237 in cJSON.h.
CJSON_PUBLIC(cJSON *) cJSON_DetachItemFromObjectCaseSensitive(cJSON *object, const char *string)
{
cJSON *to_detach = cJSON_GetObjectItemCaseSensitive(object, string);
return cJSON_DetachItemViaPointer(object, to_detach);
}