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