MCPcopy Create free account
hub / github.com/TheForceEngine/TheForceEngine / cJSON_AddItemToArray

Function cJSON_AddItemToArray

TheForceEngine/TFE_System/cJSON.c:1995–1998  ·  view source on GitHub ↗

Add item to array/object. */

Source from the content-addressed store, hash-verified

1993
1994/* Add item to array/object. */
1995CJSON_PUBLIC(cJSON_bool) cJSON_AddItemToArray(cJSON *array, cJSON *item)
1996{
1997 return add_item_to_array(array, item);
1998}
1999
2000#if defined(__clang__) || (defined(__GNUC__) && ((__GNUC__ > 4) || ((__GNUC__ == 4) && (__GNUC_MINOR__ > 5))))
2001 #pragma GCC diagnostic push

Callers 1

cJSON.hFile · 0.85

Calls 1

add_item_to_arrayFunction · 0.85

Tested by

no test coverage detected