I've just inherited some C code, which is quite new, paradoxically, but have the old function syntax. As you know it looks like this:
void old_style( c , a )
char c;
int a;
{}
What I want to do is to parse the whole code and converse the old syntax to new one. But before I start, I wanted to know if by chance I won't reinvent the wheel. So, do you know some existing solution to this?