| 3015 | } |
| 3016 | |
| 3017 | CJSON_PUBLIC(cJSON_bool) cJSON_IsString(const cJSON * const item) |
| 3018 | { |
| 3019 | if (item == NULL) |
| 3020 | { |
| 3021 | return false; |
| 3022 | } |
| 3023 | |
| 3024 | return (item->type & 0xFF) == cJSON_String; |
| 3025 | } |
| 3026 | |
| 3027 | CJSON_PUBLIC(cJSON_bool) cJSON_IsArray(const cJSON * const item) |
| 3028 | { |
no outgoing calls
searching dependent graphs…