MCPcopy Create free account
hub / github.com/TheForceEngine/TheForceEngine / cJSON_IsArray

Function cJSON_IsArray

TheForceEngine/TFE_System/cJSON.c:2966–2974  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2964}
2965
2966CJSON_PUBLIC(cJSON_bool) cJSON_IsArray(const cJSON * const item)
2967{
2968 if (item == NULL)
2969 {
2970 return false;
2971 }
2972
2973 return (item->type & 0xFF) == cJSON_Array;
2974}
2975
2976CJSON_PUBLIC(cJSON_bool) cJSON_IsObject(const cJSON * const item)
2977{

Callers 8

parseJsonStringArrayFunction · 0.85
parseLogicDataFunction · 0.85
tryAssignPropertyFunction · 0.85
parseExternalPickupsFunction · 0.85
parseExternalProjectilesFunction · 0.85
parseExternalEffectsFunction · 0.85
parseExternalWeaponsFunction · 0.85
tryAssignWeaponPropertyFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected