Function readLinkAbsoluteZ [src]

Same as readLink, except the path parameter is null-terminated.

Prototype

pub fn readLinkAbsoluteZ(pathname_c: [*:0]const u8, buffer: *[max_path_bytes]u8) ![]u8

Parameters

pathname_c: [*:0]const u8buffer: *[max_path_bytes]u8

Source

pub fn readLinkAbsoluteZ(pathname_c: [*:0]const u8, buffer: *[max_path_bytes]u8) ![]u8 { assert(path.isAbsoluteZ(pathname_c)); return posix.readlinkZ(pathname_c, buffer); }