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

Function cJSON_IsArray

cJSON.c:3027–3035  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3025}
3026
3027CJSON_PUBLIC(cJSON_bool) cJSON_IsArray(const cJSON * const item)
3028{
3029 if (item == NULL)
3030 {
3031 return false;
3032 }
3033
3034 return (item->type & 0xFF) == cJSON_Array;
3035}
3036
3037CJSON_PUBLIC(cJSON_bool) cJSON_IsObject(const cJSON * const item)
3038{

Calls

no outgoing calls

Used in the wild real call sites across dependent graphs

searching dependent graphs…