chord movement of F7-Bb7-F7-C7.
You'll hear similar eight-bar chord progressions on songs like
"Someday After a While" by Freddie King,
"It Hurts Me Too" by Elmore James and
"Sitting on Top of the World" by Howlin' Wolf.════
The .txt ends at "...Wolf."
I don't have any trailing cr/lf or white spaces and it is saved in Ansi encoding.
Anyways, I'll check back tomorrow, goodnight everyone.
To be sure - what you can do is set the buffer array to 0 to begin with. fileData = newchar[fileLength+1](); //the () at the end means initialise to zero
you should open the file in binary mode myInputFileStream.open( fileName.c_str(), ios::binary);
remember that newline in windows is CR+LF (that's 2 bytes), if you are not reading the file in binary mode fstream is interpreting the CR+LF as only one character (2bytes read as one)..