MCPcopy Index your code
hub / github.com/DaveGamble/cJSON / cJSON_GetStringValue

Function cJSON_GetStringValue

cJSON.c:99–107  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Calls 1

cJSON_IsStringFunction · 0.85

Used in the wild real call sites across dependent graphs

searching dependent graphs…