| 1806 | } |
| 1807 | |
| 1808 | CJSON_PUBLIC(cJSON *) cJSON_GetObjectItem(const cJSON * const object, const char * const string) |
| 1809 | { |
| 1810 | return get_object_item(object, string, false); |
| 1811 | } |
| 1812 | |
| 1813 | CJSON_PUBLIC(cJSON *) cJSON_GetObjectItemCaseSensitive(const cJSON * const object, const char * const string) |
| 1814 | { |
no test coverage detected