Skip to main content

rusty_bubbletea/
termios_bsd.rs

1//! Cleanroom Rust port of upstream Go source file: `termios_bsd.go`
2//! Upstream Target Tag / Version: `v2.0.8`
3//!
4//! <public-docs>
5//! # Termios (BSD)
6//!
7//! BSD termios terminal configuration helpers.
8//! </public-docs>
9
10/// BSD termios support indicator.
11pub fn is_bsd_termios() -> bool {
12    cfg!(target_os = "freebsd")
13        || cfg!(target_os = "macos")
14        || cfg!(target_os = "openbsd")
15        || cfg!(target_os = "netbsd")
16}