wcstombs_s method

int wcstombs_s(
  1. Pointer<Uint64> _PtNumOfCharConverted,
  2. Pointer<Int8> _Dst,
  3. int _DstSizeInBytes,
  4. Pointer<Uint16> _Src,
  5. int _MaxCountInBytes,
)

Implementation

int wcstombs_s(
  ffi.Pointer<ffi.Uint64> _PtNumOfCharConverted,
  ffi.Pointer<ffi.Int8> _Dst,
  int _DstSizeInBytes,
  ffi.Pointer<ffi.Uint16> _Src,
  int _MaxCountInBytes,
) {
  return (_wcstombs_s ??=
      _dylib.lookupFunction<_c_wcstombs_s, _dart_wcstombs_s>('wcstombs_s'))(
    _PtNumOfCharConverted,
    _Dst,
    _DstSizeInBytes,
    _Src,
    _MaxCountInBytes,
  );
}