| 2073 | } |
| 2074 | |
| 2075 | CJSON_PUBLIC(cJSON*) cJSON_AddNullToObject(cJSON * const object, const char * const name) |
| 2076 | { |
| 2077 | cJSON *null = cJSON_CreateNull(); |
| 2078 | if (add_item_to_object(object, name, null, &global_hooks, false)) |
| 2079 | { |
| 2080 | return null; |
| 2081 | } |
| 2082 | |
| 2083 | cJSON_Delete(null); |
| 2084 | return NULL; |
| 2085 | } |
| 2086 | |
| 2087 | CJSON_PUBLIC(cJSON*) cJSON_AddTrueToObject(cJSON * const object, const char * const name) |
| 2088 | { |
nothing calls this directly
no test coverage detected