Hi,
I know eclipse can do this, but I'm not sure if Visual C++ 2005 can do it?
I have a bunch of old .c files that use that ugly type of formatting:
which I want to convert to this more readable format:
Can I do this with VC++ 2005 or do I need to use some other tool?
I know eclipse can do this, but I'm not sure if Visual C++ 2005 can do it?
I have a bunch of old .c files that use that ugly type of formatting:
Code:
if (a==b) {
if (c==d) {
blah();
}
}
Code:
if ( a == b )
{
if ( c == d )
{
blah();
}
}