wcscat method

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

Implementation

ffi.Pointer<ffi.Uint16> wcscat(
  ffi.Pointer<ffi.Uint16> _Destination,
  ffi.Pointer<ffi.Uint16> _Source,
) {
  return (_wcscat ??=
      _dylib.lookupFunction<_c_wcscat, _dart_wcscat>('wcscat'))(
    _Destination,
    _Source,
  );
}