ack/lang/cem/libcc.ansi/core/stdio/rewind.c
2018-06-23 18:54:40 +02:00

13 lines
195 B
C

/*
* rewind.c - set the file position indicator of a stream to the start
*/
/* $Id$ */
#include <stdio.h>
void rewind(FILE* stream)
{
(void)fseek(stream, 0L, SEEK_SET);
clearerr(stream);
}