fpathconf function

int fpathconf(
  1. int fd,
  2. int name
)

Get file-specific configuration about descriptor FD.

Implementation

int fpathconf(
  int fd,
  int name,
) {
  _fpathconf ??= Libc().dylib.lookupFunction<
      ffi.Int64 Function(ffi.Int32, ffi.Int32), _dart_fpathconf>('fpathconf');
  return _fpathconf!(
    fd,
    name,
  );
}