memset_s method

int memset_s(
  1. Pointer<Void> s,
  2. int smax,
  3. int c,
  4. int n,
)

Implementation

int memset_s(
  ffi.Pointer<ffi.Void> s,
  int smax,
  int c,
  int n,
) {
  return _memset_s(
    s,
    smax,
    c,
    n,
  );
}