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

Function cJSON_IsBool

external/cJSON/cJSON.c:3003–3011  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3001
3002
3003CJSON_PUBLIC(cJSON_bool) cJSON_IsBool(const cJSON * const item)
3004{
3005 if (item == NULL)
3006 {
3007 return false;
3008 }
3009
3010 return (item->type & (cJSON_True | cJSON_False)) != 0;
3011}
3012CJSON_PUBLIC(cJSON_bool) cJSON_IsNull(const cJSON * const item)
3013{
3014 if (item == NULL)

Callers 1

convert_cjsonFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected