| 1803 | } |
| 1804 | |
| 1805 | CJSON_PUBLIC(cJSON *) cJSON_GetObjectItemCaseSensitive(const cJSON * const object, const char * const string) |
| 1806 | { |
| 1807 | return get_object_item(object, string, true); |
| 1808 | } |
| 1809 | |
| 1810 | CJSON_PUBLIC(cJSON_bool) cJSON_HasObjectItem(const cJSON *object, const char *string) |
| 1811 | { |
no test coverage detected