| 981 | return item; |
| 982 | } |
| 983 | cJSON *cJSON_CreateFalse() |
| 984 | { |
| 985 | cJSON *item = cJSON_New_Item(); |
| 986 | if (item) |
| 987 | item->type = cJSON_False; |
| 988 | return item; |
| 989 | } |
| 990 | cJSON *cJSON_CreateBool(int b) |
| 991 | { |
| 992 | cJSON *item = cJSON_New_Item(); |
nothing calls this directly
no test coverage detected