strset method

Pointer<Int8> strset(
  1. Pointer<Int8> _String,
  2. int _Value
)

Implementation

ffi.Pointer<ffi.Int8> strset(
  ffi.Pointer<ffi.Int8> _String,
  int _Value,
) {
  return (_strset_1 ??=
      _dylib.lookupFunction<_c_strset, _dart_strset>('strset'))(
    _String,
    _Value,
  );
}