MCPcopy Create free account
hub / github.com/Tencent/Hardcoder / cJSON_IsString

Function cJSON_IsString

libapp2sys/src/main/cpp/cjson/cJSON.c:2767–2775  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2765}
2766
2767CJSON_PUBLIC(cJSON_bool) cJSON_IsString(const cJSON * const item)
2768{
2769 if (item == NULL)
2770 {
2771 return false;
2772 }
2773
2774 return (item->type & 0xFF) == cJSON_String;
2775}
2776
2777CJSON_PUBLIC(cJSON_bool) cJSON_IsArray(const cJSON * const item)
2778{

Callers 1

cJSON_GetStringValueFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected