//! CUE objects dealocation
#[allow(dead_code)]unsafeextern"C"{/// Releases the resource identified by `handle`.
pub(crate)fncue_free(handle:usize);/// Releases all resources identified by the null-terminated array of handles.
pub(crate)fncue_free_all(handles:*mutusize);/// Frees memory allocated by the C library (libc).
pub(crate)fnlibc_free(ptr:*mutcore::ffi::c_void);}