• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #ifndef HASH_H
2 #define HASH_H
3 
4 #include <common.h>
5 #include <libelf.h>
6 #include <gelf.h>
7 
8 int hash_lookup(Elf *elf,
9                 Elf_Data *hash,
10                 Elf_Data *symtab,
11                 Elf_Data *symstr,
12                 const char *symname);
13 
14 #endif/*HASH_H*/
15