| 2390 | |
| 2391 | /* Create basic types: */ |
| 2392 | CJSON_PUBLIC(cJSON *) cJSON_CreateNull(void) |
| 2393 | { |
| 2394 | cJSON *item = cJSON_New_Item(&global_hooks); |
| 2395 | if(item) |
| 2396 | { |
| 2397 | item->type = cJSON_NULL; |
| 2398 | } |
| 2399 | |
| 2400 | return item; |
| 2401 | } |
| 2402 | |
| 2403 | CJSON_PUBLIC(cJSON *) cJSON_CreateTrue(void) |
| 2404 | { |
no test coverage detected