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