]> pd.if.org Git - pdclib/blobdiff - functions/stdio/rewind.c
Merged branch stdio_rewrite back into trunk.
[pdclib] / functions / stdio / rewind.c
index d97e4e21ac289db2e2ae8e3a60555350dedf29f7..4dab8e9e2cbe9943392011876bf9723a060005b9 100644 (file)
@@ -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.
 
 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;
 }