MCPcopy Create free account
hub / github.com/Tencent/Hardcoder / cJSON_IsRaw

Function cJSON_IsRaw

libapp2sys/src/main/cpp/cjson/cJSON.c:2797–2805  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2795}
2796
2797CJSON_PUBLIC(cJSON_bool) cJSON_IsRaw(const cJSON * const item)
2798{
2799 if (item == NULL)
2800 {
2801 return false;
2802 }
2803
2804 return (item->type & 0xFF) == cJSON_Raw;
2805}
2806
2807// #lizard forgives
2808CJSON_PUBLIC(cJSON_bool) cJSON_Compare(const cJSON * const a, const cJSON * const b, const cJSON_bool case_sensitive)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected