//! TTY device utilities.
//!
//! Provides functions for working with TTY devices.
/// Get the TTY device path for a given PID (e.g., "ttys003").
///
/// # Arguments
/// * `pid` - Process ID to look up
///
/// # Returns
/// The TTY device name (without "/dev/" prefix), or `None` if the process
/// doesn't exist or has no controlling terminal.