| 2715 | } |
| 2716 | |
| 2717 | CJSON_PUBLIC(cJSON_bool) cJSON_IsFalse(const cJSON * const item) |
| 2718 | { |
| 2719 | if (item == NULL) |
| 2720 | { |
| 2721 | return false; |
| 2722 | } |
| 2723 | |
| 2724 | return (item->type & 0xFF) == cJSON_False; |
| 2725 | } |
| 2726 | |
| 2727 | CJSON_PUBLIC(cJSON_bool) cJSON_IsTrue(const cJSON * const item) |
| 2728 | { |
nothing calls this directly
no outgoing calls
no test coverage detected