I want to make a list of global variables / macros consumed by the function and displayed by the function. For example, for:
void myfn(void) { out1 = in + 1; out2 = 2; }
.. the tool will list inputs as "in", and outputs as "out1" and "out2".
Does anyone know about such a tool?
c global-variables code-analysis
user281382
source share