Function allocLowerString [src]
Allocates a lower case copy of ascii_string.
Caller owns returned string and must free with allocator.
Prototype
pub fn allocLowerString(allocator: std.mem.Allocator, ascii_string: []const u8) ![]u8
Parameters
allocator: std.mem.Allocator
ascii_string: []const u8
Example
test allocLowerString {
const result = try allocLowerString(std.testing.allocator, "aBcDeFgHiJkLmNOPqrst0234+💩!");
defer std.testing.allocator.free(result);
try std.testing.expectEqualStrings("abcdefghijklmnopqrst0234+💩!", result);
}
Source
pub fn allocLowerString(allocator: std.mem.Allocator, ascii_string: []const u8) ![]u8 {
const result = try allocator.alloc(u8, ascii_string.len);
return lowerString(result, ascii_string);
}