MCPcopy Create free account
hub / github.com/SVF-tools/SVF / cJSON_GetStringValue

Function cJSON_GetStringValue

svf/lib/Util/cJSON.cpp:100–108  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

98}
99
100CJSON_PUBLIC(char *) cJSON_GetStringValue(const cJSON * const item)
101{
102 if (!cJSON_IsString(item))
103 {
104 return NULL;
105 }
106
107 return item->valuestring;
108}
109
110CJSON_PUBLIC(double) cJSON_GetNumberValue(const cJSON * const item)
111{

Callers

nothing calls this directly

Calls 1

cJSON_IsStringFunction · 0.85

Tested by

no test coverage detected