fsetpos.c 160 字节
Newer Older
R
Rich Felker 已提交
1
#include "stdio_impl.h"
2
#include "libc.h"
R
Rich Felker 已提交
3 4 5

int fsetpos(FILE *f, const fpos_t *pos)
{
6
	return __fseeko(f, *(const long long *)pos, SEEK_SET);
R
Rich Felker 已提交
7 8 9
}

LFS64(fsetpos);