stricmp method

int stricmp(
  1. Pointer<Int8> _String1,
  2. Pointer<Int8> _String2
)

Implementation

int stricmp(
  ffi.Pointer<ffi.Int8> _String1,
  ffi.Pointer<ffi.Int8> _String2,
) {
  return (_stricmp_1 ??=
      _dylib.lookupFunction<_c_stricmp, _dart_stricmp>('stricmp'))(
    _String1,
    _String2,
  );
}