| 1915 | } |
| 1916 | |
| 1917 | CJSON_PUBLIC(cJSON *) cJSON_GetObjectItem(const cJSON * const object, const char * const string) |
| 1918 | { |
| 1919 | return get_object_item(object, string, false); |
| 1920 | } |
| 1921 | |
| 1922 | CJSON_PUBLIC(cJSON *) cJSON_GetObjectItemCaseSensitive(const cJSON * const object, const char * const string) |
| 1923 | { |
no test coverage detected