| 2775 | } |
| 2776 | |
| 2777 | CJSON_PUBLIC(cJSON_bool) cJSON_IsArray(const cJSON * const item) |
| 2778 | { |
| 2779 | if (item == NULL) |
| 2780 | { |
| 2781 | return false; |
| 2782 | } |
| 2783 | |
| 2784 | return (item->type & 0xFF) == cJSON_Array; |
| 2785 | } |
| 2786 | |
| 2787 | CJSON_PUBLIC(cJSON_bool) cJSON_IsObject(const cJSON * const item) |
| 2788 | { |
nothing calls this directly
no outgoing calls
no test coverage detected