wctomb_s method

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

Implementation

int wctomb_s(
  ffi.Pointer<ffi.Int> _SizeConverted,
  ffi.Pointer<ffi.Char> _MbCh,
  int _SizeInBytes,
  int _WCh,
) {
  return _wctomb_s(
    _SizeConverted,
    _MbCh,
    _SizeInBytes,
    _WCh,
  );
}