Hi I got a code that in pseudo dos something like
ifstream os;
while(os.oef()){
os.getline(buffer,length);
}
If some condition is met,
I'd like to be able to jump back to the previous line,
such that the next getline will give the line just-read in, at a later time in my execution timeline.
Is this possible?
thanks