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,
  );
}