Does anybody know where I can find a utility/application running on Windows that analyses C source and outputs a functional dependency tree?
What I’m looking for is something along these lines:
PrintString->PrintCharacter->PrintByte->Printf
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It’s almost certainly overkill, but you can do this for C, C++, PHP, Java, C#, and more with Doxygen (if you have Graphviz dot installed). Here’s a page with a sample call tree generated by Doxygen/dot.
Doxygen runs on Windows fine, and can output HTML and a few other formats.