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

Function cJSON_IsInvalid

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

Source from the content-addressed store, hash-verified

2705}
2706
2707CJSON_PUBLIC(cJSON_bool) cJSON_IsInvalid(const cJSON * const item)
2708{
2709 if (item == NULL)
2710 {
2711 return false;
2712 }
2713
2714 return (item->type & 0xFF) == cJSON_Invalid;
2715}
2716
2717CJSON_PUBLIC(cJSON_bool) cJSON_IsFalse(const cJSON * const item)
2718{

Callers 1

cJSON_CompareFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected