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

Function cJSON_IsString

cJSON.c:2937–2945  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2935}
2936
2937CJSON_PUBLIC(cJSON_bool) cJSON_IsString(const cJSON * const item)
2938{
2939 if (item == NULL)
2940 {
2941 return false;
2942 }
2943
2944 return (item->type & 0xFF) == cJSON_String;
2945}
2946
2947CJSON_PUBLIC(cJSON_bool) cJSON_IsArray(const cJSON * const item)
2948{

Callers 2

cJSON_GetStringValueFunction · 0.85
cJSON_SelectFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected