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

Function cJSON_IsArray

cJSON.c:2947–2955  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2945}
2946
2947CJSON_PUBLIC(cJSON_bool) cJSON_IsArray(const cJSON * const item)
2948{
2949 if (item == NULL)
2950 {
2951 return false;
2952 }
2953
2954 return (item->type & 0xFF) == cJSON_Array;
2955}
2956
2957CJSON_PUBLIC(cJSON_bool) cJSON_IsObject(const cJSON * const item)
2958{

Callers 1

cJSON_SelectFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected