MCPcopy Create free account
hub / github.com/BigPig0/RelayLive / cJSON_IsArray

Function cJSON_IsArray

ThirdParty/cjson/cJSON.c:2810–2818  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2808}
2809
2810CJSON_PUBLIC(cJSON_bool) cJSON_IsArray(const cJSON * const item)
2811{
2812 if (item == NULL)
2813 {
2814 return false;
2815 }
2816
2817 return (item->type & 0xFF) == cJSON_Array;
2818}
2819
2820CJSON_PUBLIC(cJSON_bool) cJSON_IsObject(const cJSON * const item)
2821{

Callers 6

get_item_from_pointerFunction · 0.85
detach_pathFunction · 0.85
apply_patchFunction · 0.85
cJSONUtils_ApplyPatchesFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected