/* ---------------------------------------------------------------------------- * $Id$ * ---------------------------------------------------------------------------- * Public Domain C Library - http://pdclib.sourceforge.net * This code is Public Domain. Use, modify, and redistribute at will. * --------------------------------------------------------------------------*/ void rewind( FILE * stream ) { /* TODO */ }; /* PDPC code - unreviewed { fseek(stream, 0L, SEEK_SET); return; } */