Create basic types: */
| 973 | |
| 974 | /* Create basic types: */ |
| 975 | cJSON *cJSON_CreateNull() |
| 976 | { |
| 977 | cJSON *item = cJSON_New_Item(); |
| 978 | if (item) |
| 979 | item->type = cJSON_NULL; |
| 980 | return item; |
| 981 | } |
| 982 | cJSON *cJSON_CreateTrue() |
| 983 | { |
| 984 | cJSON *item = cJSON_New_Item(); |
no test coverage detected