|
Finding function name from address
I'm looking for a way to look up the name of a function using the address of the function to look it up. So if I have like 'void (*funcptr)() = somefunc;' is there a way to get "somefunc" by just using funcptr? Do I have to read the symbol table in the binary? If I do does anyone have any idea how to do that or any useful links?
Thanks!
|