wcscat method
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,
);
}