MCPcopy Create free account
hub / github.com/antirez/botlib / cJSON_IsRaw

Function cJSON_IsRaw

cJSON.c:2967–2975  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2965}
2966
2967CJSON_PUBLIC(cJSON_bool) cJSON_IsRaw(const cJSON * const item)
2968{
2969 if (item == NULL)
2970 {
2971 return false;
2972 }
2973
2974 return (item->type & 0xFF) == cJSON_Raw;
2975}
2976
2977CJSON_PUBLIC(cJSON_bool) cJSON_Compare(const cJSON * const a, const cJSON * const b, const cJSON_bool case_sensitive)
2978{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected