| 1811 | } |
| 1812 | |
| 1813 | CJSON_PUBLIC(cJSON *) cJSON_GetObjectItemCaseSensitive(const cJSON * const object, const char * const string) |
| 1814 | { |
| 1815 | return get_object_item(object, string, true); |
| 1816 | } |
| 1817 | |
| 1818 | CJSON_PUBLIC(cJSON_bool) cJSON_HasObjectItem(const cJSON *object, const char *string) |
| 1819 | { |
no test coverage detected