Skip to main content

rusty_bubbletea/
termios_unix.rs

1//! Cleanroom Rust port of upstream Go source file: `termios_unix.go`
2//! Upstream Target Tag / Version: `v2.0.8`
3//!
4//! <public-docs>
5//! # Termios (Unix)
6//!
7//! POSIX Unix termios terminal configuration helpers.
8//! </public-docs>
9
10/// POSIX Unix termios indicator.
11pub fn is_unix_termios() -> bool {
12    cfg!(unix)
13}