MCPcopy Index your code
hub / github.com/DaveGamble/cJSON / cJSON_IsString

Function cJSON_IsString

cJSON.c:3017–3025  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3015}
3016
3017CJSON_PUBLIC(cJSON_bool) cJSON_IsString(const cJSON * const item)
3018{
3019 if (item == NULL)
3020 {
3021 return false;
3022 }
3023
3024 return (item->type & 0xFF) == cJSON_String;
3025}
3026
3027CJSON_PUBLIC(cJSON_bool) cJSON_IsArray(const cJSON * const item)
3028{

Calls

no outgoing calls

Used in the wild real call sites across dependent graphs

searching dependent graphs…