| 1904 | } |
| 1905 | |
| 1906 | CJSON_PUBLIC(cJSON *) cJSON_GetObjectItem(const cJSON * const object, const char * const string) |
| 1907 | { |
| 1908 | return get_object_item(object, string, false); |
| 1909 | } |
| 1910 | |
| 1911 | CJSON_PUBLIC(cJSON *) cJSON_GetObjectItemCaseSensitive(const cJSON * const object, const char * const string) |
| 1912 | { |
no test coverage detected