Function getRpathPathName [src]
Asserts LoadCommand is of type rpath_command.
Prototype
pub fn getRpathPathName(lc: LoadCommand) []const u8
Parameters
lc: LoadCommand
Source
pub fn getRpathPathName(lc: LoadCommand) []const u8 {
const rpath_lc = lc.cast(rpath_command).?;
const data = lc.data[rpath_lc.path..];
return mem.sliceTo(data, 0);
}