MCPcopy Create free account
hub / github.com/Netis/cloud-probe / cJSON_IsObject

Function cJSON_IsObject

cpworker/src/cJSON/cJSON.c:2989–2997  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 10

parse_req_pattern_configFunction · 0.85
parse_task_configFunction · 0.85
parse_tasks_jsonFunction · 0.85
parse_config_jsonFunction · 0.85
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