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 21:45, 5 July 2011 editTParis (talk | contribs)Autopatrolled, Administrators30,360 edits Misplaced Pages:Articles for deletion/Rewind (C) closed as merge to stdio.h← Previous edit Revision as of 21:52, 5 July 2011 edit undoSmackBot (talk | contribs)3,734,324 editsm Dated {{Afd-merge to}}. (Build p613)Next edit →
Line 1: Line 1:
{{afd-mergeto|stdio.h|Rewind (C)|05 July 2011}} {{Afd-merge to|stdio.h|Rewind (C)|05 July 2011|date=July 2011}}


{{lowercase|title=rewind}} {{lowercase|title=rewind}}
Line 14: Line 14:
==References== ==References==
{{reflist}} {{reflist}}
{{Use dmy dates|date=July 2011}}


] ]

Revision as of 21:52, 5 July 2011

This article was nominated for deletion. The discussion was closed on 05 July 2011 with a consensus to merge the content into the article stdio.h. If you find that such action has not been taken promptly, please consider assisting in the merger instead of re-nominating the article for deletion. To discuss the merger, please use the destination article's talk page. (July 2011)


rewind is a function in the C programming language that is specified in the stdio.h library header file. The function moves the the file position indicator to the beginning of the specified stream, while also clearing the error and EOF flags associated with that stream.

rewind acts as if fseek(stream, 0L, SEEK_SET) was called for the stream passed, except that rewind causes the error indicator to also be cleared.

Syntax

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

References

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

Categories: