| 974 | return item; |
| 975 | } |
| 976 | cJSON *cJSON_CreateTrue() |
| 977 | { |
| 978 | cJSON *item = cJSON_New_Item(); |
| 979 | if (item) |
| 980 | item->type = cJSON_True; |
| 981 | return item; |
| 982 | } |
| 983 | cJSON *cJSON_CreateFalse() |
| 984 | { |
| 985 | cJSON *item = cJSON_New_Item(); |
nothing calls this directly
no test coverage detected