| 2967 | } |
| 2968 | |
| 2969 | CJSON_PUBLIC(cJSON_bool) cJSON_IsString(const cJSON * const item) |
| 2970 | { |
| 2971 | if (item == NULL) |
| 2972 | { |
| 2973 | return false; |
| 2974 | } |
| 2975 | |
| 2976 | return (item->type & 0xFF) == cJSON_String; |
| 2977 | } |
| 2978 | |
| 2979 | CJSON_PUBLIC(cJSON_bool) cJSON_IsArray(const cJSON * const item) |
| 2980 | { |
no outgoing calls