| 2102 | } |
| 2103 | |
| 2104 | CJSON_PUBLIC(cJSON_bool) cJSON_AddItemToObject(cJSON *object, const char *string, cJSON *item) |
| 2105 | { |
| 2106 | return add_item_to_object(object, string, item, &global_hooks, false); |
| 2107 | } |
| 2108 | |
| 2109 | /* Add an item to an object with constant string as key */ |
| 2110 | CJSON_PUBLIC(cJSON_bool) cJSON_AddItemToObjectCS(cJSON *object, const char *string, cJSON *item) |
searching dependent graphs…