MCPcopy Create free account
hub / github.com/antirez/botlib / cJSON_IsFalse

Function cJSON_IsFalse

cJSON.c:2887–2895  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2885}
2886
2887CJSON_PUBLIC(cJSON_bool) cJSON_IsFalse(const cJSON * const item)
2888{
2889 if (item == NULL)
2890 {
2891 return false;
2892 }
2893
2894 return (item->type & 0xFF) == cJSON_False;
2895}
2896
2897CJSON_PUBLIC(cJSON_bool) cJSON_IsTrue(const cJSON * const item)
2898{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected