summaryrefslogblamecommitdiff
path: root/src/stdio/__toread.c
blob: f00cc467ee9c4c371a874cb3943f23557976d0d0 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14













                                                         
#include <stdio_impl.h>

int __toread(FILE *f)
{
	f->mode |= f->mode-1;
	if (f->wpos > f->buf) f->write(f, 0, 0);
	f->wpos = f->wbase = f->wend = 0;
	if (f->flags & (F_EOF|F_NORD)) {
		if (f->flags & F_NORD) f->flags |= F_ERR;
		return EOF;
	}
	f->rpos = f->rend = f->buf;
	return 0;
}