MCPcopy Index your code
hub / github.com/DaveGamble/cJSON / cJSON_IsTrue

Function cJSON_IsTrue

cJSON.c:2977–2985  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2975}
2976
2977CJSON_PUBLIC(cJSON_bool) cJSON_IsTrue(const cJSON * const item)
2978{
2979 if (item == NULL)
2980 {
2981 return false;
2982 }
2983
2984 return (item->type & 0xff) == cJSON_True;
2985}
2986
2987
2988CJSON_PUBLIC(cJSON_bool) cJSON_IsBool(const cJSON * const item)

Calls

no outgoing calls

Used in the wild real call sites across dependent graphs

searching dependent graphs…