MCPcopy Create free account
hub / github.com/antirez/botlib / cJSON_IsObject

Function cJSON_IsObject

cJSON.c:2957–2965  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2955}
2956
2957CJSON_PUBLIC(cJSON_bool) cJSON_IsObject(const cJSON * const item)
2958{
2959 if (item == NULL)
2960 {
2961 return false;
2962 }
2963
2964 return (item->type & 0xFF) == cJSON_Object;
2965}
2966
2967CJSON_PUBLIC(cJSON_bool) cJSON_IsRaw(const cJSON * const item)
2968{

Callers 1

cJSON_SelectFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected