memcmp method

int memcmp(
  1. Pointer<Void> s1,
  2. Pointer<Void> s2,
  3. int n
)

Implementation

int memcmp(
  ffi.Pointer<ffi.Void> s1,
  ffi.Pointer<ffi.Void> s2,
  int n,
) {
  return _memcmp(
    s1,
    s2,
    n,
  );
}