| 1921 | } |
| 1922 | |
| 1923 | CJSON_PUBLIC(cJSON *) cJSON_GetObjectItemCaseSensitive(const cJSON * const object, const char * const string) |
| 1924 | { |
| 1925 | return get_object_item(object, string, true); |
| 1926 | } |
| 1927 | |
| 1928 | CJSON_PUBLIC(cJSON_bool) cJSON_HasObjectItem(const cJSON *object, const char *string) |
| 1929 | { |
no test coverage detected