pub fn is_decimal_digit(c: u8) bool { return '0' <= c and c <= '9'; }