| 1991 | } |
| 1992 | |
| 1993 | CJSON_PUBLIC(cJSON_bool) cJSON_HasObjectItem(const cJSON *object, const char *string) |
| 1994 | { |
| 1995 | return cJSON_GetObjectItem(object, string) ? 1 : 0; |
| 1996 | } |
| 1997 | |
| 1998 | /* Utility for array list handling. */ |
| 1999 | static void suffix_object(cJSON *prev, cJSON *item) |
nothing calls this directly
no test coverage detected