wctomb method

int wctomb(
  1. Pointer<Char> __s,
  2. int __wchar
)

Implementation

int wctomb(
  ffi.Pointer<ffi.Char> __s,
  int __wchar,
) {
  return _wctomb(
    __s,
    __wchar,
  );
}