summaryrefslogtreecommitdiffstats
path: root/vendor/rustix/src/termios/cf.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/rustix/src/termios/cf.rs')
-rw-r--r--vendor/rustix/src/termios/cf.rs40
1 files changed, 40 insertions, 0 deletions
diff --git a/vendor/rustix/src/termios/cf.rs b/vendor/rustix/src/termios/cf.rs
new file mode 100644
index 000000000..d28b65e03
--- /dev/null
+++ b/vendor/rustix/src/termios/cf.rs
@@ -0,0 +1,40 @@
+use crate::termios::{Speed, Termios};
+use crate::{imp, io};
+
+/// `cfgetospeed(termios)`
+#[inline]
+#[must_use]
+pub fn cfgetospeed(termios: &Termios) -> Speed {
+ imp::termios::syscalls::cfgetospeed(termios)
+}
+
+/// `cfgetispeed(termios)`
+#[inline]
+#[must_use]
+pub fn cfgetispeed(termios: &Termios) -> Speed {
+ imp::termios::syscalls::cfgetispeed(termios)
+}
+
+/// `cfmakeraw(termios)`
+#[inline]
+pub fn cfmakeraw(termios: &mut Termios) {
+ imp::termios::syscalls::cfmakeraw(termios)
+}
+
+/// `cfsetospeed(termios, speed)`
+#[inline]
+pub fn cfsetospeed(termios: &mut Termios, speed: Speed) -> io::Result<()> {
+ imp::termios::syscalls::cfsetospeed(termios, speed)
+}
+
+/// `cfsetispeed(termios, speed)`
+#[inline]
+pub fn cfsetispeed(termios: &mut Termios, speed: Speed) -> io::Result<()> {
+ imp::termios::syscalls::cfsetispeed(termios, speed)
+}
+
+/// `cfsetspeed(termios, speed)`
+#[inline]
+pub fn cfsetspeed(termios: &mut Termios, speed: Speed) -> io::Result<()> {
+ imp::termios::syscalls::cfsetspeed(termios, speed)
+}