| 1928 | } |
| 1929 | |
| 1930 | CJSON_PUBLIC(cJSON *) cJSON_GetObjectItem(const cJSON * const object, const char * const string) |
| 1931 | { |
| 1932 | return get_object_item(object, string, false); |
| 1933 | } |
| 1934 | |
| 1935 | CJSON_PUBLIC(cJSON *) cJSON_GetObjectItemCaseSensitive(const cJSON * const object, const char * const string) |
| 1936 | { |
no test coverage detected