summaryrefslogtreecommitdiffstats
path: root/vendor/rustix/src/termios/cf.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:02:58 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:02:58 +0000
commit698f8c2f01ea549d77d7dc3338a12e04c11057b9 (patch)
tree173a775858bd501c378080a10dca74132f05bc50 /vendor/rustix/src/termios/cf.rs
parentInitial commit. (diff)
downloadrustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.tar.xz
rustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.zip
Adding upstream version 1.64.0+dfsg1.upstream/1.64.0+dfsg1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
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)
+}