(version: &str)
| 13 | include!(concat!(env!("OUT_DIR"), "/cli-help.rs")); |
| 14 | |
| 15 | pub(crate) fn print_version_and_exit(version: &str) -> ! { |
| 16 | println!("ccusage {version}"); |
| 17 | process::exit(0); |
| 18 | } |
| 19 | |
| 20 | pub(crate) fn print_help_and_exit(args: &[String]) -> ! { |
| 21 | println!("{}", help_text_for_args(args)); |
no outgoing calls
no test coverage detected