Function strtabRequired [src]

Prototype

pub fn strtabRequired(self: *const Coff) bool

Parameters

self: *const Coff

Source

pub fn strtabRequired(self: *const Coff) bool { for (self.getSectionHeaders()) |*sect_hdr| if (sect_hdr.getName() == null) return true; return false; }