wcscpy method

Pointer<Uint16> wcscpy(
  1. Pointer<Uint16> _Destination,
  2. Pointer<Uint16> _Source
)

Implementation

ffi.Pointer<ffi.Uint16> wcscpy(
  ffi.Pointer<ffi.Uint16> _Destination,
  ffi.Pointer<ffi.Uint16> _Source,
) {
  return _wcscpy(
    _Destination,
    _Source,
  );
}