Add an item to an object with constant string as key */
| 2070 | |
| 2071 | /* Add an item to an object with constant string as key */ |
| 2072 | CJSON_PUBLIC(cJSON_bool) cJSON_AddItemToObjectCS(cJSON *object, const char *string, cJSON *item) |
| 2073 | { |
| 2074 | return add_item_to_object(object, string, item, &global_hooks, true); |
| 2075 | } |
| 2076 | |
| 2077 | CJSON_PUBLIC(cJSON_bool) cJSON_AddItemReferenceToArray(cJSON *array, cJSON *item) |
| 2078 | { |
nothing calls this directly
no test coverage detected