strncmp method

int strncmp(
  1. Pointer<Int8> __s1,
  2. Pointer<Int8> __s2,
  3. int __n
)
inherited

Implementation

int strncmp(
  ffi.Pointer<ffi.Int8> __s1,
  ffi.Pointer<ffi.Int8> __s2,
  int __n,
) {
  return _strncmp(
    __s1,
    __s2,
    __n,
  );
}