Skip to main content

rusty_bubbletea/
termios_windows.rs

1//! Cleanroom Rust port of upstream Go source file: `termios_windows.go`
2//! Upstream Target Tag / Version: `v2.0.8`
3//!
4//! <public-docs>
5//! # Termios (Windows)
6//!
7//! Windows console mode termios helpers.
8//! </public-docs>
9
10/// Windows console termios indicator.
11pub fn is_windows_termios() -> bool {
12    cfg!(target_os = "windows")
13}