C automatic document
C automatic document
(OP)
I want to extract automatically from a C program the complex C structures, the list of the C functions...
And I would like to extract thiese informations on a Word, text or HTML document.
So, I looking for a tool that countains these features. If you know one of these tools please reply to me.
Thanks.
And I would like to extract thiese informations on a Word, text or HTML document.
So, I looking for a tool that countains these features. If you know one of these tools please reply to me.
Thanks.





RE: C automatic document
1. If you need to just collect the names/descriptions of C strcutures and functions, you can very well write a VB macro in Word. The macro will have to scan the input files and search for patterns (like "struct", and void xx()). The VB macro can easily put in the search results onto a Word document in whatever format you desire. (I've done similar exercises)
2. If the need is to get the call trees of functions (like f1() calling f2() calling f3()) you can use some software tools available in the market. This could be particularly useful when you're dealing with some unfamilar set of code- as for reverse-engineering.
RE: C automatic document
I thank you to your quickly response of my request.
I think the case 2 is my exact requirement:
I would like to find a tools that create automatically the call trees of C functions and, if it's possible, the trees of C structures (struct of struct of struct...).
And, you say that some product exists in the market. So, I would like to know if you have some product's name.
Thanks.