#[macro_export]
macro_rules! log_status {
($prefix:expr, $($arg:tt)*) => {
if ::std::io::IsTerminal::is_terminal(&::std::io::stderr()) {
eprintln!(concat!("[", $prefix, "] {}"), format_args!($($arg)*));
}
};
}
extern crate self as homeboy;
pub mod cli_surface;
#[doc(hidden)]
pub mod commands;
pub mod core;
pub mod help_topics;
#[cfg(test)]
pub(crate) mod test_support;
pub use core::release::changelog;
pub use core::release::version;
pub use core::*;
pub fn is_zero(v: &usize) -> bool {
*v == 0
}
pub fn is_zero_u32(v: &u32) -> bool {
*v == 0
}