| 2911 | } |
| 2912 | |
| 2913 | CJSON_PUBLIC(cJSON_bool) cJSON_IsNumber(const cJSON * const item) |
| 2914 | { |
| 2915 | if (item == NULL) |
| 2916 | { |
| 2917 | return false; |
| 2918 | } |
| 2919 | |
| 2920 | return (item->type & 0xFF) == cJSON_Number; |
| 2921 | } |
| 2922 | |
| 2923 | CJSON_PUBLIC(cJSON_bool) cJSON_IsString(const cJSON * const item) |
| 2924 | { |
no outgoing calls
no test coverage detected