Tagged Questions
1
vote
1answer
101 views
Is there a tool that can refactor this C code correctly?
Lets say I have the following code (the array* function are what we use for resizable arrays and they operate on pointers-to-arrays that are null initialized):
typedef struct MyStruct
{
int i;
} ...
0
votes
1answer
106 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 ...
7
votes
10answers
4k 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 ...