while( fscanf( tracefile, "%s ", opcode ) != EOF ){blah}
Occasionally I need to cause fscanf to re-read a line upon a certain condition in my code being met. Is this possible; how would I do that?
Thanks.
|
while( fscanf( tracefile, "%s ", opcode ) != EOF ){blah} Occasionally I need to cause fscanf to re-read a line upon a certain condition in my code being met. Is this possible; how would I do that? Thanks. |
|||
|
|
|
Assuming your input file is seekable (and not, for example, a pipe or network stream) you could do something like:
Backing up and rescanning could be pretty inefficient (as well as the issues of not supporting input from a pipe etc.), so you might want to consider if there's an alternative. |
|||
|
|
|
I almost never use I use |
|||
|
|