| 1798 | } |
| 1799 | |
| 1800 | CJSON_PUBLIC(cJSON *) cJSON_GetObjectItem(const cJSON * const object, const char * const string) |
| 1801 | { |
| 1802 | return get_object_item(object, string, false); |
| 1803 | } |
| 1804 | |
| 1805 | CJSON_PUBLIC(cJSON *) cJSON_GetObjectItemCaseSensitive(const cJSON * const object, const char * const string) |
| 1806 | { |
no test coverage detected