| 2885 | } |
| 2886 | |
| 2887 | CJSON_PUBLIC(cJSON_bool) cJSON_IsFalse(const cJSON * const item) |
| 2888 | { |
| 2889 | if (item == NULL) |
| 2890 | { |
| 2891 | return false; |
| 2892 | } |
| 2893 | |
| 2894 | return (item->type & 0xFF) == cJSON_False; |
| 2895 | } |
| 2896 | |
| 2897 | CJSON_PUBLIC(cJSON_bool) cJSON_IsTrue(const cJSON * const item) |
| 2898 | { |
nothing calls this directly
no outgoing calls
no test coverage detected