| 2229 | } |
| 2230 | |
| 2231 | CJSON_PUBLIC(cJSON*) cJSON_AddArrayToObject(cJSON * const object, const char * const name) |
| 2232 | { |
| 2233 | cJSON *array = cJSON_CreateArray(); |
| 2234 | if (add_item_to_object(object, name, array, &global_hooks, false)) |
| 2235 | { |
| 2236 | return array; |
| 2237 | } |
| 2238 | |
| 2239 | cJSON_Delete(array); |
| 2240 | return NULL; |
| 2241 | } |
| 2242 | |
| 2243 | CJSON_PUBLIC(cJSON *) cJSON_DetachItemViaPointer(cJSON *parent, cJSON * const item) |
| 2244 | { |
searching dependent graphs…