SCIPmemccpy

Function SCIPmemccpy 

Source
pub unsafe extern "C" fn SCIPmemccpy(
    dest: *mut c_char,
    src: *const c_char,
    stop: c_char,
    cnt: c_uint,
) -> c_int
Expand description

copies characters from ‘src’ to ‘dest’, copying is stopped when either the ‘stop’ character is reached or after ‘cnt’ characters have been copied, whichever comes first.

@note undefined behaviuor on overlapping arrays