X-Git-Url: https://pd.if.org/git/?p=pdclib;a=blobdiff_plain;f=functions%2Fstdio%2Frewind.c;h=4dab8e9e2cbe9943392011876bf9723a060005b9;hp=d97e4e21ac289db2e2ae8e3a60555350dedf29f7;hb=393020b6e48719d27699dea6b29e53025bbd5123;hpb=f408c1fd633015089d2a0fc6bc31c9f61eeae0a9 diff --git a/functions/stdio/rewind.c b/functions/stdio/rewind.c index d97e4e2..4dab8e9 100644 --- a/functions/stdio/rewind.c +++ b/functions/stdio/rewind.c @@ -1,6 +1,6 @@ /* $Id$ */ -/* frewind( FILE * ) +/* rewind( FILE * ) This file is part of the Public Domain C Library (PDCLib). Permission is granted to use, modify, and / or redistribute at will. @@ -12,12 +12,8 @@ void rewind( struct _PDCLIB_file_t * stream ) { - if ( stream->status & _PDCLIB_WROTELAST ) - { - fflush( stream ); - } - /* TODO: Implement. */ - return; + stream->status &= ~ _PDCLIB_ERRORFLAG; + fseek( stream, 0L, SEEK_SET ); } #endif @@ -27,7 +23,7 @@ void rewind( struct _PDCLIB_file_t * stream ) int main( void ) { - TESTCASE( NO_TESTDRIVER ); + /* Testing covered by ftell.c */ return TEST_RESULTS; }