// SPDX-License-Identifier: BSD-3-Clause
// SPDX-FileCopyrightText: 2023 Jakub Jirutka <jakub@jirutka.cz>
//! This module provides a lightweight, zero-dependencies implementation of a
//! function to get the terminal width on Unix systems. It's replaced with a
//! no-op implementation on non-unix systems or when the `term_size` feature is
//! disabled.
pub use term_cols;
/// This is a no-op implementation for non-unix systems that always returns
/// `None`.