Create basic types: */
| 967 | |
| 968 | /* Create basic types: */ |
| 969 | cJSON *cJSON_CreateNull() |
| 970 | { |
| 971 | cJSON *item = cJSON_New_Item(); |
| 972 | if (item) |
| 973 | item->type = cJSON_NULL; |
| 974 | return item; |
| 975 | } |
| 976 | cJSON *cJSON_CreateTrue() |
| 977 | { |
| 978 | cJSON *item = cJSON_New_Item(); |
no test coverage detected