| 1938 | } |
| 1939 | |
| 1940 | CJSON_PUBLIC(cJSON_bool) cJSON_HasObjectItem(const cJSON *object, const char *string) |
| 1941 | { |
| 1942 | return cJSON_GetObjectItem(object, string) ? 1 : 0; |
| 1943 | } |
| 1944 | |
| 1945 | /* Utility for array list handling. */ |
| 1946 | static void suffix_object(cJSON *prev, cJSON *item) |
nothing calls this directly
no test coverage detected