Function dupe [src]
Allocator.dupe without the need to handle out of memory.
Prototype
pub fn dupe(b: *Build, bytes: []const u8) []u8 Parameters
b: *Buildbytes: []const u8 Source
pub fn dupe(b: *Build, bytes: []const u8) []u8 {
return dupeInner(b.allocator, bytes);
}