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

Function cJSON_IsNull

cJSON.c:2997–3005  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2995 return (item->type & (cJSON_True | cJSON_False)) != 0;
2996}
2997CJSON_PUBLIC(cJSON_bool) cJSON_IsNull(const cJSON * const item)
2998{
2999 if (item == NULL)
3000 {
3001 return false;
3002 }
3003
3004 return (item->type & 0xFF) == cJSON_NULL;
3005}
3006
3007CJSON_PUBLIC(cJSON_bool) cJSON_IsNumber(const cJSON * const item)
3008{

Calls

no outgoing calls

Used in the wild real call sites across dependent graphs

searching dependent graphs…