fl_read method

int fl_read(
  1. int flh,
  2. int len,
  3. Pointer<Char> buff
)

Implementation

int fl_read(
  int flh,
  int len,
  ffi.Pointer<ffi.Char> buff,
) {
  return _fl_read(
    flh,
    len,
    buff,
  );
}