| 1930 | } |
| 1931 | |
| 1932 | CJSON_PUBLIC(void) cJSON_AddItemToObject(cJSON *object, const char *string, cJSON *item) |
| 1933 | { |
| 1934 | add_item_to_object(object, string, item, &global_hooks, false); |
| 1935 | } |
| 1936 | |
| 1937 | /* Add an item to an object with constant string as key */ |
| 1938 | CJSON_PUBLIC(void) cJSON_AddItemToObjectCS(cJSON *object, const char *string, cJSON *item) |
no test coverage detected