MCPcopy Create free account
hub / github.com/alibaba/CicadaPlayer / cJSON_IsString

Function cJSON_IsString

framework/utils/cJSON.c:2759–2767  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2757}
2758
2759CJSON_PUBLIC(cJSON_bool) cJSON_IsString(const cJSON * const item)
2760{
2761 if (item == NULL)
2762 {
2763 return false;
2764 }
2765
2766 return (item->type & 0xFF) == cJSON_String;
2767}
2768
2769CJSON_PUBLIC(cJSON_bool) cJSON_IsArray(const cJSON * const item)
2770{

Callers 1

cJSON_GetStringValueFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected