| 2117 | } |
| 2118 | |
| 2119 | CJSON_PUBLIC(cJSON_bool) cJSON_AddItemToObject(cJSON *object, const char *string, cJSON *item) |
| 2120 | { |
| 2121 | return add_item_to_object(object, string, item, &global_hooks, false); |
| 2122 | } |
| 2123 | |
| 2124 | /* Add an item to an object with constant string as key */ |
| 2125 | CJSON_PUBLIC(cJSON_bool) cJSON_AddItemToObjectCS(cJSON *object, const char *string, cJSON *item) |
no test coverage detected