1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#![warn(missing_docs)]
#![no_std]
pub extern crate ufmt;
pub use ufmt::{uDebug, uDisplay, uWrite, uwrite, uwriteln};
#[cfg(windows)]
extern "system" {
fn SetConsoleOutputCP(wCodePageID: u32) -> i32;
}
pub fn init() {
#[cfg(windows)]
{
unsafe {
SetConsoleOutputCP(65001);
}
}
}
#[derive(Copy, Clone)]
pub struct Stdout;
impl ufmt::uWrite for Stdout {
type Error = ();
fn write_str(&mut self, text: &str) -> Result<(), Self::Error> {
let result = unsafe {
libc::write(1, text.as_ptr() as *const _, text.len() as _)
};
if result < 0 {
Err(())
} else {
Ok(())
}
}
}
#[macro_export]
macro_rules! println {
() => {
let _ = $crate::ufmt::uwrite!($crate::Stdout, "\n");
};
($($arg:tt)*) => {
let _ = $crate::ufmt::uwriteln!($crate::Stdout, $($arg)*);
};
}
#[macro_export]
macro_rules! print {
($($arg:tt)*) => {
let _ = $crate::ufmt::uwrite!($crate::Stdout, $($arg)*);
};
}