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

Function cJSON_IsNumber

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

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected