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