mbtowc method

int mbtowc(
  1. Pointer<WChar> __pwc,
  2. Pointer<Char> __s,
  3. int __n
)

Implementation

int mbtowc(
  ffi.Pointer<ffi.WChar> __pwc,
  ffi.Pointer<ffi.Char> __s,
  int __n,
) {
  return _mbtowc(
    __pwc,
    __s,
    __n,
  );
}