mbrtowc method

int mbrtowc(
  1. Pointer<WChar> _DstCh,
  2. Pointer<Char> _SrcCh,
  3. int _SizeInBytes,
  4. Pointer<mbstate_t> _State,
)

Implementation

int mbrtowc(
  ffi.Pointer<ffi.WChar> _DstCh,
  ffi.Pointer<ffi.Char> _SrcCh,
  int _SizeInBytes,
  ffi.Pointer<mbstate_t> _State,
) {
  return _mbrtowc(
    _DstCh,
    _SrcCh,
    _SizeInBytes,
    _State,
  );
}