Function toStringZ [src]
Prototype
pub fn toStringZ(p: Path, allocator: Allocator) Allocator.Error![:0]u8
Parameters
p: Path
allocator: Allocator
Source
pub fn toStringZ(p: Path, allocator: Allocator) Allocator.Error![:0]u8 {
return std.fmt.allocPrintZ(allocator, "{}", .{p});
}