Basically, my requirement is to parse multiple C files (with their respective headers) into a single AST.
AST should have following information:
- Call graph (which function is called from where).
- Function names and variables.
Is such a thing possible?