MCPcopy Create free account
hub / github.com/0xShug0/audio.cpp / cJSON_IsTrue

Function cJSON_IsTrue

external/cJSON/cJSON.c:2992–3000  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2990}
2991
2992CJSON_PUBLIC(cJSON_bool) cJSON_IsTrue(const cJSON * const item)
2993{
2994 if (item == NULL)
2995 {
2996 return false;
2997 }
2998
2999 return (item->type & 0xff) == cJSON_True;
3000}
3001
3002
3003CJSON_PUBLIC(cJSON_bool) cJSON_IsBool(const cJSON * const item)

Callers 1

convert_cjsonFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected