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(
    _String,
    _Value,
  );
}