setbuf method

void setbuf(
  1. Pointer<IO_FILE_> __stream,
  2. Pointer<Int8> __buf
)

Implementation

void setbuf(
  ffi.Pointer<IO_FILE_> __stream,
  ffi.Pointer<ffi.Int8> __buf,
) {
  return _setbuf(
    __stream,
    __buf,
  );
}