Add an item to an object with constant string as key */
| 1944 | |
| 1945 | /* Add an item to an object with constant string as key */ |
| 1946 | CJSON_PUBLIC(void) cJSON_AddItemToObjectCS(cJSON *object, const char *string, cJSON *item) |
| 1947 | { |
| 1948 | add_item_to_object(object, string, item, &global_hooks, true); |
| 1949 | } |
| 1950 | |
| 1951 | CJSON_PUBLIC(void) cJSON_AddItemReferenceToArray(cJSON *array, cJSON *item) |
| 1952 | { |
nothing calls this directly
no test coverage detected