Using fseek with a file pointer that points to stdin

前端 未结 3 806
没有蜡笔的小新
没有蜡笔的小新 2020-11-28 15:52

Depending on command-line arguments, I\'m setting a file pointer to point either towards a specified file or stdin (for the purpose of piping). I then pass this pointer arou

3条回答
  •  抹茶落季
    2020-11-28 16:15

    Here is the relevant entry in the ANSI standard concerning the fseek function:

    For a text stream, either offset shall be zero, or offset shall be a value returned by an earlier successful call to the ftell function on a stream associated with the same file and whence shall be SEEK_SET

    So, possible but with some limitations

提交回复
热议问题