mirror of
https://github.com/uutils/coreutils
synced 2025-01-05 17:59:00 +00:00
od: regroup constants
This commit is contained in:
parent
fa7550cad9
commit
62826143b5
1 changed files with 1 additions and 2 deletions
|
@ -48,10 +48,9 @@ use uucore::parse_size::ParseSizeError;
|
||||||
use uucore::{format_usage, help_about, help_section, help_usage, show_error, show_warning};
|
use uucore::{format_usage, help_about, help_section, help_usage, show_error, show_warning};
|
||||||
|
|
||||||
const PEEK_BUFFER_SIZE: usize = 4; // utf-8 can be 4 bytes
|
const PEEK_BUFFER_SIZE: usize = 4; // utf-8 can be 4 bytes
|
||||||
|
|
||||||
const ABOUT: &str = help_about!("od.md");
|
const ABOUT: &str = help_about!("od.md");
|
||||||
|
|
||||||
const USAGE: &str = help_usage!("od.md");
|
const USAGE: &str = help_usage!("od.md");
|
||||||
|
|
||||||
const AFTER_HELP: &str = help_section!("after help", "od.md");
|
const AFTER_HELP: &str = help_section!("after help", "od.md");
|
||||||
|
|
||||||
pub(crate) mod options {
|
pub(crate) mod options {
|
||||||
|
|
Loading…
Reference in a new issue