This is an old revision of this page, as edited by Antiuser (talk | contribs) at 10:04, 21 June 2011 (Proposing article for deletion per WP:PROD. (TW)). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
Revision as of 10:04, 21 June 2011 by Antiuser (talk | contribs) (Proposing article for deletion per WP:PROD. (TW))(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)This article may have been previously nominated for deletion: Misplaced Pages:Articles for deletion/Rewind (C) exists. It is proposed that this article be deleted because of the following concern:
If you can address this concern by improving, copyediting, sourcing, renaming, or merging the page, please edit this page and do so. You may remove this message if you improve the article or otherwise object to deletion for any reason. Although not required, you are encouraged to explain why you object to the deletion, either in your edit summary or on the talk page. If this template is removed, do not replace it. This message has remained in place for seven days, so the article may be deleted without further notice. Find sources: "Rewind" C – news · newspapers · books · scholar · JSTORPRODExpired+%5B%5BWP%3APROD%7CPROD%5D%5D%2C+concern+was%3A+Article+about+a+function+of+a+programming+language.+Not+encyclopaedic%2C+per+%5B%5BWP%3ANOTMANUAL%5D%5DExpired ], concern was: Article about a function of a programming language. Not encyclopaedic, per WP:NOTMANUAL Nominator: Please consider notifying the author/project: {{subst:proposed deletion notify|Rewind (C)|concern=Article about a function of a programming language. Not encyclopaedic, per ]}} ~~~~ Timestamp: 20110621100453 10:04, 21 June 2011 (UTC) Administrators: delete |
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 );Category: