CJSON_PUBLIC(cJSON_bool) cJSON_IsNumber(const cJSON * const item) { if (item == NULL) { return false; } return (item->type & 0xFF) == cJSON_Number; } other func(cJSON_IsNumber、cJSON_IsTrue...) all use (item->type & 0xFF)...