fn ascii_lower(bytes: []u8) void
fn ascii_lower(bytes: []u8) void { for (bytes) |*b| b.* = std.ascii.toLower(b.*); }