| 1976 | } |
| 1977 | |
| 1978 | CJSON_PUBLIC(cJSON_bool) cJSON_HasObjectItem(const cJSON *object, const char *string) |
| 1979 | { |
| 1980 | return cJSON_GetObjectItem(object, string) ? 1 : 0; |
| 1981 | } |
| 1982 | |
| 1983 | /* Utility for array list handling. */ |
| 1984 | static void suffix_object(cJSON *prev, cJSON *item) |
searching dependent graphs…