| 2964 | } |
| 2965 | |
| 2966 | CJSON_PUBLIC(cJSON_bool) cJSON_IsArray(const cJSON * const item) |
| 2967 | { |
| 2968 | if (item == NULL) |
| 2969 | { |
| 2970 | return false; |
| 2971 | } |
| 2972 | |
| 2973 | return (item->type & 0xFF) == cJSON_Array; |
| 2974 | } |
| 2975 | |
| 2976 | CJSON_PUBLIC(cJSON_bool) cJSON_IsObject(const cJSON * const item) |
| 2977 | { |
no outgoing calls
no test coverage detected