Create basic types: */
| 2110 | |
| 2111 | /* Create basic types: */ |
| 2112 | cJSON *cJSON_CreateNull(void) |
| 2113 | { |
| 2114 | cJSON *item = cJSON_New_Item(); |
| 2115 | if(item) |
| 2116 | { |
| 2117 | item->type = cJSON_NULL; |
| 2118 | } |
| 2119 | |
| 2120 | return item; |
| 2121 | } |
| 2122 | |
| 2123 | cJSON *cJSON_CreateTrue(void) |
| 2124 | { |
no test coverage detected