Revision as of 10:02, 21 June 2011 editJiyaoliu (talk | contribs)4 edits →Syntax:← Previous edit | Revision as of 10:04, 21 June 2011 edit undoAntiuser (talk | contribs)Extended confirmed users, Rollbackers9,569 edits Proposing article for deletion per WP:PROD. (TW)Next edit → | ||
Line 1: | Line 1: | ||
{{Proposed deletion/dated | |||
|concern = Article about a function of a programming language. Not encyclopaedic, per ] | |||
|timestamp = 20110621100453 | |||
}} | |||
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:04, 21 June 2011
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: