| 3020 | } |
| 3021 | |
| 3022 | CJSON_PUBLIC(cJSON_bool) cJSON_IsNumber(const cJSON * const item) |
| 3023 | { |
| 3024 | if (item == NULL) |
| 3025 | { |
| 3026 | return false; |
| 3027 | } |
| 3028 | |
| 3029 | return (item->type & 0xFF) == cJSON_Number; |
| 3030 | } |
| 3031 | |
| 3032 | CJSON_PUBLIC(cJSON_bool) cJSON_IsString(const cJSON * const item) |
| 3033 | { |
no outgoing calls
no test coverage detected