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

Function cJSON_IsObject

TheForceEngine/TFE_System/cJSON.c:2976–2984  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2974}
2975
2976CJSON_PUBLIC(cJSON_bool) cJSON_IsObject(const cJSON * const item)
2977{
2978 if (item == NULL)
2979 {
2980 return false;
2981 }
2982
2983 return (item->type & 0xFF) == cJSON_Object;
2984}
2985
2986CJSON_PUBLIC(cJSON_bool) cJSON_IsRaw(const cJSON * const item)
2987{

Callers 7

loadCustomModSettingsFunction · 0.85
parseLogicDataFunction · 0.85
parseExternalPickupsFunction · 0.85
parseExternalProjectilesFunction · 0.85
parseExternalEffectsFunction · 0.85
parseExternalWeaponsFunction · 0.85
cJSON_ArrayForEachFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected