Revision as of 10:04, 21 June 2011 editAntiuser (talk | contribs)Extended confirmed users, Rollbackers9,569 edits Proposing article for deletion per WP:PROD. (TW)← Previous edit |
Latest revision as of 23:48, 27 April 2023 edit undoSteel1943 (talk | contribs)Autopatrolled, Extended confirmed users, Page movers, Pending changes reviewers, Rollbackers, Template editors197,279 edits Rcat |
(13 intermediate revisions by 8 users not shown) |
Line 1: |
Line 1: |
|
|
#REDIRECT ] |
|
{{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 /> |
|
|
Acts as if fseek(stream, 0L, SEEK_SET) was called for the stream passed, and then its error indicator cleared.<br /> |
|
|
|
|
|
|
|
{{Redirect category shell| |
|
==Syntax:== |
|
|
|
{{R with history}} |
|
<source lang="c"> |
|
|
|
{{R to anchor}} |
|
#include <stdio.h> |
|
|
⚫ |
}} |
|
void rewind( FILE *stream ); |
|
|
</source> |
|