setbuf method

void setbuf(
  1. Pointer<FILE> __stream,
  2. Pointer<Char> __buf
)

Implementation

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