MCPcopy Create free account
hub / github.com/SVF-tools/SVF / cJSON_IsRaw

Function cJSON_IsRaw

svf/lib/Util/cJSON.cpp:2998–3006  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2996}
2997
2998CJSON_PUBLIC(cJSON_bool) cJSON_IsRaw(const cJSON * const item)
2999{
3000 if (item == NULL)
3001 {
3002 return false;
3003 }
3004
3005 return (item->type & 0xFF) == cJSON_Raw;
3006}
3007
3008CJSON_PUBLIC(cJSON_bool) cJSON_Compare(const cJSON * const a, const cJSON * const b, const cJSON_bool case_sensitive)
3009{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected