| 1966 | } |
| 1967 | |
| 1968 | CJSON_PUBLIC(cJSON *) cJSON_GetObjectItem(const cJSON * const object, const char * const string) |
| 1969 | { |
| 1970 | return get_object_item(object, string, false); |
| 1971 | } |
| 1972 | |
| 1973 | CJSON_PUBLIC(cJSON *) cJSON_GetObjectItemCaseSensitive(const cJSON * const object, const char * const string) |
| 1974 | { |
searching dependent graphs…