| 2925 | |
| 2926 | |
| 2927 | CJSON_PUBLIC(cJSON_bool) cJSON_IsBool(const cJSON * const item) |
| 2928 | { |
| 2929 | if (item == NULL) |
| 2930 | { |
| 2931 | return false; |
| 2932 | } |
| 2933 | |
| 2934 | return (item->type & (cJSON_True | cJSON_False)) != 0; |
| 2935 | } |
| 2936 | CJSON_PUBLIC(cJSON_bool) cJSON_IsNull(const cJSON * const item) |
| 2937 | { |
| 2938 | if (item == NULL) |
no outgoing calls
no test coverage detected