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

Function cJSON_IsInvalid

cJSON.c:2877–2885  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2875}
2876
2877CJSON_PUBLIC(cJSON_bool) cJSON_IsInvalid(const cJSON * const item)
2878{
2879 if (item == NULL)
2880 {
2881 return false;
2882 }
2883
2884 return (item->type & 0xFF) == cJSON_Invalid;
2885}
2886
2887CJSON_PUBLIC(cJSON_bool) cJSON_IsFalse(const cJSON * const item)
2888{

Callers 1

cJSON_CompareFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected