[go: up one dir, main page]

ufmt-stdio 0.3.0

C stdio writer for ufmt
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#[test]
fn it_works() {
    ufmt_stdio::init();
    ufmt_stdio::println!("Hellow 世界!");
    ufmt_stdio::eprintln!("Error 世界!");
    ufmt_stdio::d_println!("Debug 世界!");
}

#[test]
fn it_works2() {
    ufmt_stdio::init();
    ufmt_stdio::print!("Hellow World 2!\n");
    ufmt_stdio::eprint!("Error World 2!\n");
    ufmt_stdio::d_print!("Debug World 2!\n");
}