strnlen_s method

int strnlen_s(
  1. Pointer<Int8> _String,
  2. int _MaxCount
)

Implementation

int strnlen_s(
  ffi.Pointer<ffi.Int8> _String,
  int _MaxCount,
) {
  return (_strnlen_s ??=
      _dylib.lookupFunction<_c_strnlen_s, _dart_strnlen_s>('strnlen_s'))(
    _String,
    _MaxCount,
  );
}