strncmp method

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

Implementation

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