summaryrefslogtreecommitdiff
path: root/lib/libc/stdio/rewind.c
blob: 728e2d758e6a700b420df664dde22245f18f5683 (plain)
1
2
3
4
5
6
7
#include <stdio.h> // for clearerr, fseek, FILE, SEEK_SET, rewind

void rewind(FILE *stream)
{
	fseek(stream, 0L, SEEK_SET);
	clearerr(stream);
}