| 2042 | } |
| 2043 | |
| 2044 | CJSON_PUBLIC(cJSON_bool) cJSON_AddItemToObject(cJSON *object, const char *string, cJSON *item) |
| 2045 | { |
| 2046 | return add_item_to_object(object, string, item, &global_hooks, false); |
| 2047 | } |
| 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) |
nothing calls this directly
no test coverage detected