Method: Elf::File#read_addr

Defined in:
lib/elf/file.rb

#read_addrObject



95
96
97
98
99
100
# File 'lib/elf/file.rb', line 95

def read_addr
  case @elf_class
  when Class::Elf32 then read_u32
  when Class::Elf64 then read_u64
  end
end