wctomb method

int wctomb(
  1. Pointer<Int8> _MbCh,
  2. int _WCh
)

Implementation

int wctomb(
  ffi.Pointer<ffi.Int8> _MbCh,
  int _WCh,
) {
  return (_wctomb ??=
      _dylib.lookupFunction<_c_wctomb, _dart_wctomb>('wctomb'))(
    _MbCh,
    _WCh,
  );
}