strncasecmp_l function

int strncasecmp_l(
  1. Pointer<Int8> __s1,
  2. Pointer<Int8> __s2,
  3. int __n,
  4. Pointer<locale_struct> __loc,
)

Implementation

int strncasecmp_l(
  ffi.Pointer<ffi.Int8> __s1,
  ffi.Pointer<ffi.Int8> __s2,
  int __n,
  ffi.Pointer<locale_struct> __loc,
) {
  _strncasecmp_l ??= Libc().dylib.lookupFunction<
      ffi.Int32 Function(ffi.Pointer<ffi.Int8>, ffi.Pointer<ffi.Int8>,
          ffi.Uint64, ffi.Pointer<locale_struct>),
      _dart_strncasecmp_l>('strncasecmp_l');
  return _strncasecmp_l!(
    __s1,
    __s2,
    __n,
    __loc,
  );
}