Misplaced Pages

Rewind (C): Difference between revisions

Article snapshot taken from Wikipedia with creative commons attribution-sharealike license. Give it a read and then ask your questions in the chat. We can research this topic together.
Browse history interactively← Previous editNext edit →Content deleted Content addedVisualWikitext
Revision as of 10:17, 21 June 2011 editJiyaoliu (talk | contribs)4 editsNo edit summary← Previous edit Revision as of 10:19, 21 June 2011 edit undoAntiuser (talk | contribs)Extended confirmed users, Rollbackers9,569 edits Nominated for deletion; see Misplaced Pages:Articles for deletion/Rewind (C). (TW)Next edit →
Line 1: Line 1:
<!-- Please do not remove or change this AfD message until the issue is settled -->
{{Article for deletion/dated|page=Rewind (C)|timestamp=20110621101919|year=2011|month=June|day=21|substed=yes|help=off}}
<!-- For administrator use only: {{Old AfD multi|page=Rewind (C)|date=21 June 2011|result='''keep'''}} -->
<!-- End of AfD message, feel free to edit beyond this point -->
The function rewind() moves the file position indicator to the beginning of the specified stream, also clearing the error and EOF flags associated with that stream. <br /> The function rewind() moves the file position indicator to the beginning of the specified stream, also clearing the error and EOF flags associated with that stream. <br />
Acts as if fseek(stream, 0L, SEEK_SET) was called for the stream passed, and then its error indicator cleared.<br /> Acts as if fseek(stream, 0L, SEEK_SET) was called for the stream passed, and then its error indicator cleared.<br />

Revision as of 10:19, 21 June 2011

An editor has nominated this article for deletion.
You are welcome to participate in the deletion discussion, which will decide whether or not to retain it.Feel free to improve the article, but do not remove this notice before the discussion is closed. For more information, see the guide to deletion.
Find sources: "Rewind" C – news · newspapers · books · scholar · JSTOR%5B%5BWikipedia%3AArticles+for+deletion%2FRewind+%28C%29%5D%5DAFD

The function rewind() moves the file position indicator to the beginning of the specified stream, also clearing the error and EOF flags associated with that stream.
Acts as if fseek(stream, 0L, SEEK_SET) was called for the stream passed, and then its error indicator cleared.

Syntax:

#include <stdio.h>
void rewind( FILE *stream );


<references>

  1. , The Open Group Base Specifications Issue 7, IEEE Std 1003.1-2008.