home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
minnie.tuhs.org
/
unixen.tar
/
unixen
/
PDP-11
/
Trees
/
V7
/
usr
/
src
/
libc
/
stdio
/
rew.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1979-05-05
|
242 b
|
14 lines
#include <stdio.h>
rewind(iop)
register struct _iobuf *iop;
{
fflush(iop);
lseek(fileno(iop), 0L, 0);
iop->_cnt = 0;
iop->_ptr = iop->_base;
iop->_flag &= ~(_IOERR|_IOEOF);
if (iop->_flag & _IORW)
iop->_flag &= ~(_IOREAD|_IOWRT);
}