| 2808 | } |
| 2809 | |
| 2810 | CJSON_PUBLIC(cJSON_bool) cJSON_IsArray(const cJSON * const item) |
| 2811 | { |
| 2812 | if (item == NULL) |
| 2813 | { |
| 2814 | return false; |
| 2815 | } |
| 2816 | |
| 2817 | return (item->type & 0xFF) == cJSON_Array; |
| 2818 | } |
| 2819 | |
| 2820 | CJSON_PUBLIC(cJSON_bool) cJSON_IsObject(const cJSON * const item) |
| 2821 | { |
no outgoing calls
no test coverage detected