| 1925 | } |
| 1926 | |
| 1927 | CJSON_PUBLIC(cJSON_bool) cJSON_HasObjectItem(const cJSON *object, const char *string) |
| 1928 | { |
| 1929 | return cJSON_GetObjectItem(object, string) ? 1 : 0; |
| 1930 | } |
| 1931 | |
| 1932 | /* Utility for array list handling. */ |
| 1933 | static void suffix_object(cJSON *prev, cJSON *item) |
nothing calls this directly
no test coverage detected