| 1986 | } |
| 1987 | |
| 1988 | CJSON_PUBLIC(cJSON *) cJSON_GetObjectItemCaseSensitive(const cJSON * const object, const char * const string) |
| 1989 | { |
| 1990 | return get_object_item(object, string, true); |
| 1991 | } |
| 1992 | |
| 1993 | CJSON_PUBLIC(cJSON_bool) cJSON_HasObjectItem(const cJSON *object, const char *string) |
| 1994 | { |
no test coverage detected