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