wcsset method

Pointer<Uint16> wcsset(
  1. Pointer<Uint16> _String,
  2. int _Value
)

Implementation

ffi.Pointer<ffi.Uint16> wcsset(
  ffi.Pointer<ffi.Uint16> _String,
  int _Value,
) {
  return (_wcsset_1 ??=
      _dylib.lookupFunction<_c_wcsset, _dart_wcsset>('wcsset'))(
    _String,
    _Value,
  );
}