Tagged Questions

6
votes
11answers
3k views

Automatically deleting unused local variables from C source code

I want to delete unused local variables from C file. Example: int fun(int a , int b) { int c,sum=0; sum=a + b; return sum; } Here the unused variable is 'c'. I will externally have a list ...
0
votes
1answer
70 views

Any tools to refactor c structures under a superstructure?

Are there any tools which help manage plain old c structures? I have a number of structures that I would like to refactor under one big happy structure. That is, I currently have: typedef struct ...