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 foo_s
{
//variables
}foo_t;
typedef struct bar_s
{
//variables
}bar_t;
static foo_t foo;
static bar_t bar;
I would like to use the following:
typedef struct super_s
{
foo_t foo;
bar_t bar;
}super_t;
static super_t super;
Now, global replace of "foo" with "super.foo" and "bar" with "super.bar" works, but I have to pay close attention for any naming gotchas.
Is there anything more specialized?
Enviroment: Usually, I work with Eclipse IDE for C/C++ Developers under Linux, but any tool/plugin/script/whatnot under Linux or Windows would be great.