| 2083 | } |
| 2084 | |
| 2085 | CJSON_PUBLIC(cJSON*) cJSON_AddNullToObject(cJSON * const object, const char * const name) |
| 2086 | { |
| 2087 | cJSON *null = cJSON_CreateNull(); |
| 2088 | if (add_item_to_object(object, name, null, &global_hooks, false)) |
| 2089 | { |
| 2090 | return null; |
| 2091 | } |
| 2092 | |
| 2093 | cJSON_Delete(null); |
| 2094 | return NULL; |
| 2095 | } |
| 2096 | |
| 2097 | CJSON_PUBLIC(cJSON*) cJSON_AddTrueToObject(cJSON * const object, const char * const name) |
| 2098 | { |
nothing calls this directly
no test coverage detected