MCPcopy Create free account
hub / github.com/0xShug0/audio.cpp / cJSON_IsArray

Function cJSON_IsArray

external/cJSON/cJSON.c:3042–3050  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3040}
3041
3042CJSON_PUBLIC(cJSON_bool) cJSON_IsArray(const cJSON * const item)
3043{
3044 if (item == NULL)
3045 {
3046 return false;
3047 }
3048
3049 return (item->type & 0xFF) == cJSON_Array;
3050}
3051
3052CJSON_PUBLIC(cJSON_bool) cJSON_IsObject(const cJSON * const item)
3053{

Callers 1

convert_cjsonFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected