| 2990 | } |
| 2991 | |
| 2992 | CJSON_PUBLIC(cJSON_bool) cJSON_IsTrue(const cJSON * const item) |
| 2993 | { |
| 2994 | if (item == NULL) |
| 2995 | { |
| 2996 | return false; |
| 2997 | } |
| 2998 | |
| 2999 | return (item->type & 0xff) == cJSON_True; |
| 3000 | } |
| 3001 | |
| 3002 | |
| 3003 | CJSON_PUBLIC(cJSON_bool) cJSON_IsBool(const cJSON * const item) |