Ask GDB to list all functions in a program

pythonic picture pythonic · May 21, 2012 · Viewed 81.3k times · Source

How can you list all functions in a program with GDB?

Answer

ks1322 picture ks1322 · May 21, 2012

info functions prints the names and data types of all defined functions. See 16 Examining the Symbol Table.