ok so here the problem the code works just adds break on to every line i want it to only add breaks to the line that don't alraedy have spaces after them.
while (! fileIn.eof() )
{
getline (fileIn, linea);
fileOut << linea << b <<endl;
}//end while
is what im working with right now.