diff options
Diffstat (limited to 'debuggerd/symbol_table.h')
-rw-r--r-- | debuggerd/symbol_table.h | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/debuggerd/symbol_table.h b/debuggerd/symbol_table.h deleted file mode 100644 index 7f41f91..0000000 --- a/debuggerd/symbol_table.h +++ /dev/null @@ -1,20 +0,0 @@ -#ifndef SYMBOL_TABLE_H -#define SYMBOL_TABLE_H - -struct symbol { - unsigned int addr; - unsigned int size; - char *name; -}; - -struct symbol_table { - struct symbol *symbols; - int num_symbols; - char *name; -}; - -struct symbol_table *symbol_table_create(const char *filename); -void symbol_table_free(struct symbol_table *table); -const struct symbol *symbol_table_lookup(struct symbol_table *table, unsigned int addr); - -#endif |