shithub: riscv

ref: 2ab25e3ec07a11f18066e37c2841b6d294091fcb
dir: /sys/src/libstdio/rewind.c/

View raw version
/*
 * pANS stdio -- rewind
 */
#include "iolib.h"
void rewind(FILE *f){
	fseek(f, 0L, SEEK_SET);
}