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