ask
December 9th, 2002, 06:47 PM
Anyone know any ready made programs that clean code up? You know something to run code thru to format it coherently. I think I'm going to make my own, but if there is something already made for this it would save a lot of time.
I hate when people code like this:
if(var)
{
int a = 5;
}
Something to convert code like that into
if(var){
int a=5;
}
I hate when people code like this:
if(var)
{
int a = 5;
}
Something to convert code like that into
if(var){
int a=5;
}