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

Function cJSON_IsString

external/cJSON/cJSON.c:3032–3040  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3030}
3031
3032CJSON_PUBLIC(cJSON_bool) cJSON_IsString(const cJSON * const item)
3033{
3034 if (item == NULL)
3035 {
3036 return false;
3037 }
3038
3039 return (item->type & 0xFF) == cJSON_String;
3040}
3041
3042CJSON_PUBLIC(cJSON_bool) cJSON_IsArray(const cJSON * const item)
3043{

Callers 2

convert_cjsonFunction · 0.85
cJSON_GetStringValueFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected