| 1938 | } |
| 1939 | |
| 1940 | CJSON_PUBLIC(void) cJSON_AddItemToObject(cJSON *object, const char *string, cJSON *item) |
| 1941 | { |
| 1942 | add_item_to_object(object, string, item, &global_hooks, false); |
| 1943 | } |
| 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) |
no test coverage detected