write method

int write(
  1. int __fd,
  2. Pointer<Void> __buf,
  3. int __nbyte
)

Implementation

int write(int __fd, ffi.Pointer<ffi.Void> __buf, int __nbyte) {
  return _write(__fd, __buf, __nbyte);
}