mbtowc method

int mbtowc(
  1. Pointer<Uint16> _DstCh,
  2. Pointer<Int8> _SrcCh,
  3. int _SrcSizeInBytes
)

Implementation

int mbtowc(
  ffi.Pointer<ffi.Uint16> _DstCh,
  ffi.Pointer<ffi.Int8> _SrcCh,
  int _SrcSizeInBytes,
) {
  return (_mbtowc ??=
      _dylib.lookupFunction<_c_mbtowc, _dart_mbtowc>('mbtowc'))(
    _DstCh,
    _SrcCh,
    _SrcSizeInBytes,
  );
}