strcmpi method

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

Implementation

int strcmpi(
  ffi.Pointer<ffi.Int8> _String1,
  ffi.Pointer<ffi.Int8> _String2,
) {
  return (_strcmpi_1 ??=
      _dylib.lookupFunction<_c_strcmpi, _dart_strcmpi>('strcmpi'))(
    _String1,
    _String2,
  );
}