[][src]Function fdk_aac_sys::FDKmemcpy

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

Copy memory. Source and destination memory must not 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 memcpy(). Please see MSDN documentation for details on how to use it.