buffer: []const u8
pub fn get(self: Strtab, off: u32) []const u8
self: Strtab
off: u32
pub fn get(self: Strtab, off: u32) []const u8 { assert(off < self.buffer.len); return mem.sliceTo(@as([*:0]const u8, @ptrCast(self.buffer.ptr + off)), 0); }
pub const Strtab = struct { buffer: []const u8, pub fn get(self: Strtab, off: u32) []const u8 { assert(off < self.buffer.len); return mem.sliceTo(@as([*:0]const u8, @ptrCast(self.buffer.ptr + off)), 0); } }
Press escape to exit search and then '?' to see more options.