shithub: plan9front

ref: 8edfa693cbe01608156ff6111c7d6edca85f8f73
dir: /sys/src/libstdio/rewind.c/

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