MCPcopy Create free account
hub / github.com/Tencent/Hardcoder / cJSON_IsTrue

Function cJSON_IsTrue

libapp2sys/src/main/cpp/cjson/cJSON.c:2727–2735  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2725}
2726
2727CJSON_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
2738CJSON_PUBLIC(cJSON_bool) cJSON_IsBool(const cJSON * const item)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected