| 2935 | } |
| 2936 | |
| 2937 | CJSON_PUBLIC(cJSON_bool) cJSON_IsString(const cJSON * const item) |
| 2938 | { |
| 2939 | if (item == NULL) |
| 2940 | { |
| 2941 | return false; |
| 2942 | } |
| 2943 | |
| 2944 | return (item->type & 0xFF) == cJSON_String; |
| 2945 | } |
| 2946 | |
| 2947 | CJSON_PUBLIC(cJSON_bool) cJSON_IsArray(const cJSON * const item) |
| 2948 | { |
no outgoing calls
no test coverage detected