| The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 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*/ | ||||