I'm trying to find if functionX
is ever called by functionY
by way of any other number of functions (let's call them functionA
, functionB
, and functionC
) in a large codebase that fortunately does not make excessive use of callback functions.
I'm clicking through doxygen include-dependency-graphs manually (read inefficiently). How can I search more effectively? Can ag
save me?
Example call graph:
taken from: https://codeyarns.com/2013/12/24/how-to-create-header-include-graph-using-doxygen/