mbstowcs method

int mbstowcs(
  1. Pointer<Int32> arg0,
  2. Pointer<Int8> arg1,
  3. int arg2
)

Implementation

int mbstowcs(
  ffi.Pointer<ffi.Int32> arg0,
  ffi.Pointer<ffi.Int8> arg1,
  int arg2,
) {
  return _mbstowcs(
    arg0,
    arg1,
    arg2,
  );
}