1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-27 19:17:43 +00:00

trying to update base64 for print changes

This commit is contained in:
Heather 2014-01-13 13:55:04 +04:00
parent ee56d7b196
commit 1a4cc9c881

View file

@ -12,7 +12,7 @@
extern mod extra;
use std::char;
use std::io::{File, stdin, stdout};
use std::io::{println, File, stdin, stdout};
use std::os;
use std::str;
@ -135,7 +135,7 @@ fn encode(input: &mut Reader, line_wrap: uint) {
fn help(progname: &str, usage: &str) {
println!("Usage: {:s} [OPTION]... [FILE]", progname);
println("");
println!("");
println(usage);
let msg = ~"With no FILE, or when FILE is -, read standard input.\n\n\
@ -149,7 +149,7 @@ fn help(progname: &str, usage: &str) {
}
fn version() {
println("base64 1.0.0");
println!("base64 1.0.0");
}
enum Mode {