| 2133 | } |
| 2134 | |
| 2135 | CJSON_PUBLIC(cJSON*) cJSON_AddNullToObject(cJSON * const object, const char * const name) |
| 2136 | { |
| 2137 | cJSON *null = cJSON_CreateNull(); |
| 2138 | if (add_item_to_object(object, name, null, &global_hooks, false)) |
| 2139 | { |
| 2140 | return null; |
| 2141 | } |
| 2142 | |
| 2143 | cJSON_Delete(null); |
| 2144 | return NULL; |
| 2145 | } |
| 2146 | |
| 2147 | CJSON_PUBLIC(cJSON*) cJSON_AddTrueToObject(cJSON * const object, const char * const name) |
| 2148 | { |
no test coverage detected
searching dependent graphs…