| 2914 | } |
| 2915 | |
| 2916 | CJSON_PUBLIC(cJSON_bool) cJSON_IsTrue(const cJSON * const item) |
| 2917 | { |
| 2918 | if (item == NULL) |
| 2919 | { |
| 2920 | return false; |
| 2921 | } |
| 2922 | |
| 2923 | return (item->type & 0xff) == cJSON_True; |
| 2924 | } |
| 2925 | |
| 2926 | |
| 2927 | CJSON_PUBLIC(cJSON_bool) cJSON_IsBool(const cJSON * const item) |
no outgoing calls
no test coverage detected