wctomb_s method

int wctomb_s(
  1. Pointer<Int32> _SizeConverted,
  2. Pointer<Int8> _MbCh,
  3. int _SizeInBytes,
  4. int _WCh,
)

Implementation

int wctomb_s(
  ffi.Pointer<ffi.Int32> _SizeConverted,
  ffi.Pointer<ffi.Int8> _MbCh,
  int _SizeInBytes,
  int _WCh,
) {
  return (_wctomb_s ??=
      _dylib.lookupFunction<_c_wctomb_s, _dart_wctomb_s>('wctomb_s'))(
    _SizeConverted,
    _MbCh,
    _SizeInBytes,
    _WCh,
  );
}