mbstowcs method

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

Implementation

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