You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think to correctly calculate an inequality position between two files you should use if(file2_c == '\r') { file1.unget(); --read_seek; continue; } instead if(file2_c == '\r') { file1.unget(); continue; }
otherwise, the position shown is shifted by the number of previous '\r's in a file, passed to a checking utility.
(example : check-stateless data cp1251)