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

Function cJSON_IsFalse

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

Source from the content-addressed store, hash-verified

2715}
2716
2717CJSON_PUBLIC(cJSON_bool) cJSON_IsFalse(const cJSON * const item)
2718{
2719 if (item == NULL)
2720 {
2721 return false;
2722 }
2723
2724 return (item->type & 0xFF) == cJSON_False;
2725}
2726
2727CJSON_PUBLIC(cJSON_bool) cJSON_IsTrue(const cJSON * const item)
2728{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected