Ultrix-3.1/src/libc/stdio/rew.c
/**********************************************************************
* Copyright (c) Digital Equipment Corporation 1984, 1985, 1986. *
* All Rights Reserved. *
* Reference "/usr/src/COPYRIGHT" for applicable restrictions. *
**********************************************************************/
/*
* SCCSID: @(#)rew.c 3.0 4/22/86
*/
#include <stdio.h>
void
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);
}