fsetpos语法

2011-03-21 22:32:58 · 作者: · 浏览: 664

fsetpos

语法:
#include <stdio.h> int fsetpos( FILE *stream, const fpos_t *position );

fsetpos()函数把给出的流的位置指针移到由position

对象指定的位置. fpos_t是在stdio.h中定义的. fsetpos()执行成功返回0,失败时返回非零. 相关主题:
fgetpos(), fseek()ftell()