#[cfg(feature = "0_5")]
use std::os::raw::*;
#[allow(non_snake_case)]
#[inline]
pub const fn WEBP_ABI_IS_INCOMPATIBLE(a: u16, b: u16) -> bool {
(a >> 8) != (b >> 8)
}
unsafe extern "C" {
#[cfg(feature = "1_1")]
#[must_use]
pub fn WebPMalloc(size: usize) -> *mut c_void;
#[cfg(feature = "0_5")]
pub fn WebPFree(ptr: *mut c_void);
}