MCPcopy Create free account
hub / github.com/Netis/cloud-probe / cJSON_AddItemToObjectCS

Function cJSON_AddItemToObjectCS

cpworker/src/cJSON/cJSON.c:2072–2075  ·  view source on GitHub ↗

Add an item to an object with constant string as key */

Source from the content-addressed store, hash-verified

2070
2071/* Add an item to an object with constant string as key */
2072CJSON_PUBLIC(cJSON_bool) cJSON_AddItemToObjectCS(cJSON *object, const char *string, cJSON *item)
2073{
2074 return add_item_to_object(object, string, item, &global_hooks, true);
2075}
2076
2077CJSON_PUBLIC(cJSON_bool) cJSON_AddItemReferenceToArray(cJSON *array, cJSON *item)
2078{

Callers

nothing calls this directly

Calls 1

add_item_to_objectFunction · 0.85

Tested by

no test coverage detected