date and time created 80/12/21 16:50:53 by wnj
[unix-history] / usr / src / lib / libc / stdio / rewind.c
CommitLineData
8c222d3d
BJ
1/* @(#)rewind.c 4.1 (Berkeley) %G% */
2#include <stdio.h>
3
4rewind(iop)
5register struct _iobuf *iop;
6{
7 fflush(iop);
8 lseek(fileno(iop), 0L, 0);
9 iop->_cnt = 0;
10 iop->_ptr = iop->_base;
11 iop->_flag &= ~(_IOERR|_IOEOF);
12}