rogu 0.2.7

Simple logger library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#[cfg(windows)]
extern "system" {
    fn SetConsoleOutputCP(wCodePageID: u32) -> i32;
}

pub fn init() {
    #[cfg(windows)]
    {
        unsafe {
            SetConsoleOutputCP(65001);
        }
    }
}