Function pathJoin [src]
Prototype
pub fn pathJoin(b: *Build, paths: []const []const u8) []u8
Parameters
b: *Build
paths: []const []const u8
Source
pub fn pathJoin(b: *Build, paths: []const []const u8) []u8 {
return fs.path.join(b.allocator, paths) catch @panic("OOM");
}