| 2995 | return (item->type & (cJSON_True | cJSON_False)) != 0; |
| 2996 | } |
| 2997 | CJSON_PUBLIC(cJSON_bool) cJSON_IsNull(const cJSON * const item) |
| 2998 | { |
| 2999 | if (item == NULL) |
| 3000 | { |
| 3001 | return false; |
| 3002 | } |
| 3003 | |
| 3004 | return (item->type & 0xFF) == cJSON_NULL; |
| 3005 | } |
| 3006 | |
| 3007 | CJSON_PUBLIC(cJSON_bool) cJSON_IsNumber(const cJSON * const item) |
| 3008 | { |
no outgoing calls
searching dependent graphs…