| 3025 | } |
| 3026 | |
| 3027 | CJSON_PUBLIC(cJSON_bool) cJSON_IsArray(const cJSON * const item) |
| 3028 | { |
| 3029 | if (item == NULL) |
| 3030 | { |
| 3031 | return false; |
| 3032 | } |
| 3033 | |
| 3034 | return (item->type & 0xFF) == cJSON_Array; |
| 3035 | } |
| 3036 | |
| 3037 | CJSON_PUBLIC(cJSON_bool) cJSON_IsObject(const cJSON * const item) |
| 3038 | { |
no outgoing calls
searching dependent graphs…