Create basic types: */
| 2244 | |
| 2245 | /* Create basic types: */ |
| 2246 | CJSON_PUBLIC(cJSON *) cJSON_CreateNull(void) |
| 2247 | { |
| 2248 | cJSON *item = cJSON_New_Item(&global_hooks); |
| 2249 | if(item) |
| 2250 | { |
| 2251 | item->type = cJSON_NULL; |
| 2252 | } |
| 2253 | |
| 2254 | return item; |
| 2255 | } |
| 2256 | |
| 2257 | CJSON_PUBLIC(cJSON *) cJSON_CreateTrue(void) |
| 2258 | { |
no test coverage detected