extern crate alloc;
pub mod console_mux;
#[cfg(feature = "fs")]
mod shell_fs;
#[doc(hidden)]
pub mod shell_support {
use alloc::string::String;
pub fn format_fragment(args: core::fmt::Arguments<'_>) -> String {
alloc::fmt::format(args)
}
pub fn format_line(args: core::fmt::Arguments<'_>) -> String {
let mut output = format_fragment(args);
output.push_str("\r\n");
output
}
#[cfg(feature = "fs")]
pub use super::shell_fs::{
CopyMode, RemoveOptions, collect_directory_entry_names, copy_after_rename_failure,
copy_operands, copy_path, ensure_recursive_destination_outside_source, ignore_remove_error,
metadata_for_remove, move_file_or_dir, path_basename, remove_path, touch_file,
touch_file_at,
};
}