| 97 | } |
| 98 | |
| 99 | CJSON_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 | |
| 109 | CJSON_PUBLIC(double) cJSON_GetNumberValue(const cJSON * const item) |
| 110 | { |
searching dependent graphs…