| 1911 | } |
| 1912 | |
| 1913 | CJSON_PUBLIC(cJSON *) cJSON_GetObjectItemCaseSensitive(const cJSON * const object, const char * const string) |
| 1914 | { |
| 1915 | return get_object_item(object, string, true); |
| 1916 | } |
| 1917 | |
| 1918 | CJSON_PUBLIC(cJSON_bool) cJSON_HasObjectItem(const cJSON *object, const char *string) |
| 1919 | { |
no test coverage detected