thp-zig/src/01_lexic/utils.zig
2024-11-16 16:12:15 -05:00

4 lines
74 B
Zig

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