MCPcopy Create free account
hub / github.com/OpenSIPS/opensips / cJSON_IsObject

Function cJSON_IsObject

lib/cJSON.c:2543–2551  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2541}
2542
2543cjbool cJSON_IsObject(const cJSON * const item)
2544{
2545 if (item == NULL)
2546 {
2547 return false;
2548 }
2549
2550 return (item->type & 0xFF) == cJSON_Object;
2551}
2552
2553cjbool cJSON_IsNull(const cJSON * const item)
2554{

Callers 1

merge_patchFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected