strcasecmp_l function

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

Implementation

int strcasecmp_l(
  ffi.Pointer<ffi.Int8> __s1,
  ffi.Pointer<ffi.Int8> __s2,
  ffi.Pointer<locale_struct> __loc,
) {
  _strcasecmp_l ??= Libc().dylib.lookupFunction<
      ffi.Int32 Function(ffi.Pointer<ffi.Int8>, ffi.Pointer<ffi.Int8>,
          ffi.Pointer<locale_struct>),
      _dart_strcasecmp_l>('strcasecmp_l');
  return _strcasecmp_l!(
    __s1,
    __s2,
    __loc,
  );
}