(fd: Fd)
| 20 | /// [Linux]: https://man7.org/linux/man-pages/man3/isatty.3.html |
| 21 | #[inline] |
| 22 | pub fn isatty<Fd: AsFd>(fd: Fd) -> bool { |
| 23 | backend::termios::syscalls::isatty(fd.as_fd()) |
| 24 | } |
| 25 | |
| 26 | /// `ttyname_r(fd)`—Returns the name of the tty open on `fd`. |
| 27 | /// |