wcstombs method

int wcstombs(
  1. Pointer<Char> __s,
  2. Pointer<WChar> __pwcs,
  3. int __n
)

Implementation

int wcstombs(
  ffi.Pointer<ffi.Char> __s,
  ffi.Pointer<ffi.WChar> __pwcs,
  int __n,
) {
  return _wcstombs(
    __s,
    __pwcs,
    __n,
  );
}