This is a program which I made back in the beginnings when I was trying to figure out how to work with strings, and how to work with files.
This is suppose to format a C++ code, for example if the syntax of an if statement is
if (condition)
{
do stuff;
}
if will format it to
if (condition){
do stuff;
}
same as for while
and for
loops. It will also format the return values, if for example the syntax is
return value;
it will enclose value
in open brackets ()
etc.