[][src]Function fdk_aac_sys::FDKmemmove

pub unsafe extern "C" fn FDKmemmove(
    dst: *mut c_void,
    src: *const c_void,
    size: UINT
)

Copy memory. Source and destination memory are allowed to overlap. Either use implementation from a Standard Library, or, if no Standard Library is available, a generic implementation. The define ::USE_BUILTIN_MEM_FUNCTIONS in genericStds.cpp controls what to use. The function arguments correspond to the standard memmove(). Please see MSDN documentation for details on how to use it.