MCPcopy Create free account
hub / github.com/BigPig0/RelayLive / cJSON_IsObject

Function cJSON_IsObject

ThirdParty/cjson/cJSON.c:2820–2828  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2818}
2819
2820CJSON_PUBLIC(cJSON_bool) cJSON_IsObject(const cJSON * const item)
2821{
2822 if (item == NULL)
2823 {
2824 return false;
2825 }
2826
2827 return (item->type & 0xFF) == cJSON_Object;
2828}
2829
2830CJSON_PUBLIC(cJSON_bool) cJSON_IsRaw(const cJSON * const item)
2831{

Callers 6

get_item_from_pointerFunction · 0.85
detach_pathFunction · 0.85
apply_patchFunction · 0.85
merge_patchFunction · 0.85
generate_merge_patchFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected