| 2725 | } |
| 2726 | |
| 2727 | CJSON_PUBLIC(cJSON_bool) cJSON_IsTrue(const cJSON * const item) |
| 2728 | { |
| 2729 | if (item == NULL) |
| 2730 | { |
| 2731 | return false; |
| 2732 | } |
| 2733 | |
| 2734 | return (item->type & 0xff) == cJSON_True; |
| 2735 | } |
| 2736 | |
| 2737 | |
| 2738 | CJSON_PUBLIC(cJSON_bool) cJSON_IsBool(const cJSON * const item) |
nothing calls this directly
no outgoing calls
no test coverage detected