(fd: Fd)
| 28 | #[doc(alias = "TCGETS2")] |
| 29 | #[doc(alias = "tcgetattr2")] |
| 30 | pub fn tcgetattr<Fd: AsFd>(fd: Fd) -> io::Result<Termios> { |
| 31 | backend::termios::syscalls::tcgetattr(fd.as_fd()) |
| 32 | } |
| 33 | |
| 34 | /// `tcgetwinsize(fd)`—Get the current terminal window size. |
| 35 | /// |