shithub: riscv

ref: 748551ea060ffc9d6020201778f4769065e69e2b
dir: /sys/src/libstdio/rewind.c/

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