3 This file is part of the Public Domain C Library (PDCLib).
4 Permission is granted to use, modify, and / or redistribute at will.
11 void rewind( struct _PDCLIB_file_t * stream )
13 stream->status &= ~ _PDCLIB_ERRORFLAG;
14 fseek( stream, 0L, SEEK_SET );
20 #include <_PDCLIB_test.h>
24 /* Testing covered by ftell.c */