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