MCPcopy Create free account
hub / github.com/0xShug0/audio.cpp / cJSON_IsObject

Function cJSON_IsObject

external/cJSON/cJSON.c:3052–3060  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3050}
3051
3052CJSON_PUBLIC(cJSON_bool) cJSON_IsObject(const cJSON * const item)
3053{
3054 if (item == NULL)
3055 {
3056 return false;
3057 }
3058
3059 return (item->type & 0xFF) == cJSON_Object;
3060}
3061
3062CJSON_PUBLIC(cJSON_bool) cJSON_IsRaw(const cJSON * const item)
3063{

Callers 1

convert_cjsonFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected