c - Identifying global variable assignments -
is there way locate functions assign specific global variable ?
for example, in 1 .c
file globals :
int x;
i know functions variable x
being assigned in:
void temp(void) { x = 1; }
here x
assigned in function temp
.
Comments
Post a Comment