strncmp method
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,
);
}