MCPcopy Create free account
hub / github.com/SVF-tools/SVF / cJSON_IsObject

Function cJSON_IsObject

svf/lib/Util/cJSON.cpp:2988–2996  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2986}
2987
2988CJSON_PUBLIC(cJSON_bool) cJSON_IsObject(const cJSON * const item)
2989{
2990 if (item == NULL)
2991 {
2992 return false;
2993 }
2994
2995 return (item->type & 0xFF) == cJSON_Object;
2996}
2997
2998CJSON_PUBLIC(cJSON_bool) cJSON_IsRaw(const cJSON * const item)
2999{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected