strncasecmp method

int strncasecmp(
  1. Pointer<Char> s1,
  2. Pointer<Char> s2,
  3. int n
)

Implementation

int strncasecmp(
  ffi.Pointer<ffi.Char> s1,
  ffi.Pointer<ffi.Char> s2,
  int n,
) {
  return _strncasecmp(
    s1,
    s2,
    n,
  );
}