| 2260 | |
| 2261 | /* Create basic types: */ |
| 2262 | CJSON_PUBLIC(cJSON *) cJSON_CreateNull(void) |
| 2263 | { |
| 2264 | cJSON *item = cJSON_New_Item(&global_hooks); |
| 2265 | if(item) |
| 2266 | { |
| 2267 | item->type = cJSON_NULL; |
| 2268 | } |
| 2269 | |
| 2270 | return item; |
| 2271 | } |
| 2272 | |
| 2273 | CJSON_PUBLIC(cJSON *) cJSON_CreateTrue(void) |
| 2274 | { |
no test coverage detected