Files
oldlinux-files/study/linux-travel/minix-386/estdio21.tar/estdio21/rewind.c
2024-02-19 00:25:23 -05:00

13 lines
201 B
C

/* r e w i n d */
#include "stdiolib.h"
/*LINTLIBRARY*/
void rewind F1(FILE *, fp)
{
(void) fseek(fp, 0L, SEEK_SET);
clearerr(fp);
}