strnset method

Pointer<Int8> strnset(
  1. Pointer<Int8> _String,
  2. int _Value,
  3. int _MaxCount
)

Implementation

ffi.Pointer<ffi.Int8> strnset(
  ffi.Pointer<ffi.Int8> _String,
  int _Value,
  int _MaxCount,
) {
  return _strnset_1(
    _String,
    _Value,
    _MaxCount,
  );
}