Elf32Shdr
data class Elf32Shdr(val shName: Elf32Word, val shType: ElfSType, val shFlags: ElfSFlags, val shAddr: Elf32Addr, val shOffset: Elf32Off, val shSize: Elf32Word, val shLink: Elf32Word, val shInfo: Elf32Word, val shAddralign: Elf32Word, val shEntsize: Elf32Word, val name: String? = null) : ElfShdr(source)
Represents a section header in a 32-bit ELF file.
The section header table is an array of these structures, with each entry describing a section in the file. The ELF header's e_shoff member gives the byte offset from the beginning of the file to the section header table.