0
Callees and macros hierarchy in any C function
The way which I could print callees and macros hierarchy to .txt extension. Eclipse only finds callees hierarchy.
1 Respuesta
0
Example:
File code A.c
A()
{
B();
C();
D(); // D is a macro
}
I need write a function by C or some tool (as plugin in eclipse). With below demand:
Input: A.c
Output: A.txt (is callees/chirds function and macros hierarchy/tree) as below:
A
B
C
D