mbtowc method

int mbtowc(
  1. Pointer<WChar> _DstCh,
  2. Pointer<Char> _SrcCh,
  3. int _SrcSizeInBytes
)

Implementation

int mbtowc(
  ffi.Pointer<ffi.WChar> _DstCh,
  ffi.Pointer<ffi.Char> _SrcCh,
  int _SrcSizeInBytes,
) {
  return _mbtowc(
    _DstCh,
    _SrcCh,
    _SrcSizeInBytes,
  );
}