| 2977 | } |
| 2978 | |
| 2979 | CJSON_PUBLIC(cJSON_bool) cJSON_IsArray(const cJSON * const item) |
| 2980 | { |
| 2981 | if (item == NULL) |
| 2982 | { |
| 2983 | return false; |
| 2984 | } |
| 2985 | |
| 2986 | return (item->type & 0xFF) == cJSON_Array; |
| 2987 | } |
| 2988 | |
| 2989 | CJSON_PUBLIC(cJSON_bool) cJSON_IsObject(const cJSON * const item) |
| 2990 | { |
no outgoing calls
no test coverage detected