Add an item to an object with constant string as key */
| 2048 | |
| 2049 | /* Add an item to an object with constant string as key */ |
| 2050 | CJSON_PUBLIC(cJSON_bool) cJSON_AddItemToObjectCS(cJSON *object, const char *string, cJSON *item) |
| 2051 | { |
| 2052 | return add_item_to_object(object, string, item, &global_hooks, true); |
| 2053 | } |
| 2054 | |
| 2055 | CJSON_PUBLIC(cJSON_bool) cJSON_AddItemReferenceToArray(cJSON *array, cJSON *item) |
| 2056 | { |
nothing calls this directly
no test coverage detected