hinoirisetr 1.6.1

A daemon to dim the screen at night
Documentation
1
2
3
4
5
6
pub fn eq_ignore_case(a: &str, b: &str) -> bool {
    a.len() == b.len()
        && a.bytes()
            .zip(b.bytes())
            .all(|(a, b)| a.eq_ignore_ascii_case(&b))
}