Create basic types: */
| 2252 | |
| 2253 | /* Create basic types: */ |
| 2254 | CJSON_PUBLIC(cJSON *) cJSON_CreateNull(void) |
| 2255 | { |
| 2256 | cJSON *item = cJSON_New_Item(&global_hooks); |
| 2257 | if(item) |
| 2258 | { |
| 2259 | item->type = cJSON_NULL; |
| 2260 | } |
| 2261 | |
| 2262 | return item; |
| 2263 | } |
| 2264 | |
| 2265 | CJSON_PUBLIC(cJSON *) cJSON_CreateTrue(void) |
| 2266 | { |
no test coverage detected