| 2745 | return (item->type & (cJSON_True | cJSON_False)) != 0; |
| 2746 | } |
| 2747 | CJSON_PUBLIC(cJSON_bool) cJSON_IsNull(const cJSON * const item) |
| 2748 | { |
| 2749 | if (item == NULL) |
| 2750 | { |
| 2751 | return false; |
| 2752 | } |
| 2753 | |
| 2754 | return (item->type & 0xFF) == cJSON_NULL; |
| 2755 | } |
| 2756 | |
| 2757 | CJSON_PUBLIC(cJSON_bool) cJSON_IsNumber(const cJSON * const item) |
| 2758 | { |
nothing calls this directly
no outgoing calls
no test coverage detected