C++ problem. I have a text file with no "carriage return" or "new line".
All the words are concatenate in a whole single block.
I want to divide the file in lines by substituting every substring "ABC" with the "carriage return" or "new line" character.
P.S: I can't scan the file line by line because the file is actually a single line, bigger than the max value allowed for a single string (string::max_size).