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