wcscat method

Pointer<wchar_t> wcscat(
  1. Pointer<wchar_t> _Destination,
  2. Pointer<wchar_t> _Source
)

Implementation

ffi.Pointer<wchar_t> wcscat(
  ffi.Pointer<wchar_t> _Destination,
  ffi.Pointer<wchar_t> _Source,
) {
  return _wcscat(
    _Destination,
    _Source,
  );
}