| 2057 | } |
| 2058 | |
| 2059 | CJSON_PUBLIC(cJSON*) cJSON_AddArrayToObject(cJSON * const object, const char * const name) |
| 2060 | { |
| 2061 | cJSON *array = cJSON_CreateArray(); |
| 2062 | if (add_item_to_object(object, name, array, &global_hooks, false)) |
| 2063 | { |
| 2064 | return array; |
| 2065 | } |
| 2066 | |
| 2067 | cJSON_Delete(array); |
| 2068 | return NULL; |
| 2069 | } |
| 2070 | |
| 2071 | CJSON_PUBLIC(cJSON *) cJSON_DetachItemViaPointer(cJSON *parent, cJSON * const item) |
| 2072 | { |
nothing calls this directly
no test coverage detected