Callees and macros hierarchy in any C function | Sololearn: Learn to code for FREE!
Новый курс! Каждый программист должен знать генеративный ИИ!
Попробуйте бесплатный урок
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.

7th May 2019, 2:32 PM
Que Chau
Que Chau - avatar
1 ответ
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
7th May 2019, 3:17 PM
Que Chau
Que Chau - avatar