strcmp method

int strcmp(
  1. Pointer<Int8> _Str1,
  2. Pointer<Int8> _Str2
)

Implementation

int strcmp(
  ffi.Pointer<ffi.Int8> _Str1,
  ffi.Pointer<ffi.Int8> _Str2,
) {
  return (_strcmp ??=
      _dylib.lookupFunction<_c_strcmp, _dart_strcmp>('strcmp'))(
    _Str1,
    _Str2,
  );
}