fileno method

int fileno(
  1. Pointer<FILE> __stream
)

Implementation

int fileno(
  ffi.Pointer<FILE> __stream,
) {
  return _fileno(
    __stream,
  );
}