strncmp method

int strncmp(
  1. Pointer<Int8> _Str1,
  2. Pointer<Int8> _Str2,
  3. int _MaxCount
)

Implementation

int strncmp(
  ffi.Pointer<ffi.Int8> _Str1,
  ffi.Pointer<ffi.Int8> _Str2,
  int _MaxCount,
) {
  return (_strncmp ??=
      _dylib.lookupFunction<_c_strncmp, _dart_strncmp>('strncmp'))(
    _Str1,
    _Str2,
    _MaxCount,
  );
}