| 2921 | } |
| 2922 | |
| 2923 | CJSON_PUBLIC(cJSON_bool) cJSON_IsString(const cJSON * const item) |
| 2924 | { |
| 2925 | if (item == NULL) |
| 2926 | { |
| 2927 | return false; |
| 2928 | } |
| 2929 | |
| 2930 | return (item->type & 0xFF) == cJSON_String; |
| 2931 | } |
| 2932 | |
| 2933 | CJSON_PUBLIC(cJSON_bool) cJSON_IsArray(const cJSON * const item) |
| 2934 | { |
no outgoing calls
no test coverage detected