Function renameAbsoluteZ [src]
Same as renameAbsolute except the path parameters are null-terminated.
Prototype
pub fn renameAbsoluteZ(old_path: [*:0]const u8, new_path: [*:0]const u8) !void
Parameters
old_path: [*:0]const u8
new_path: [*:0]const u8
Source
pub fn renameAbsoluteZ(old_path: [*:0]const u8, new_path: [*:0]const u8) !void {
assert(path.isAbsoluteZ(old_path));
assert(path.isAbsoluteZ(new_path));
return posix.renameZ(old_path, new_path);
}