首页 > 其他 > 详细

给fpos_t类型的变量赋值

时间:2015-02-06 23:14:20      阅读:694      评论:0      收藏:0      [点我收藏+]
头文件
#include <stdio.h>
原型
int fsetpos(FILE *stream,fpos_t pos);
功能:设置stream文件的读写指针到pos;
参数:stream是指针文件的指针;fpos_t的类型为结构体,其定义如下:
typedef struct
{
   __off_t __pos;
   __mbstate_t   __state;


}_G_fpos_t;

返回:成功返回0,失败返回-1并设置error变量。


实例:fseek.c

#include<stdio.h>


main()
{
 FILE *stream;
 long offset;
 fpos_t pos;
 stream = fopen ("/etc/passwd", "r");
 fseek (stream, 5, SEEK_SET) ;
 printf ("offset = %d\n", ftell (stream) );
 rewind (stream) ;
 fgetpos (stream , &pos) ;  /* 用 fgetpos () 取得读写位置 */
 printf ("offset = %d\n", pos);
 pos.__pos = 10 ;             /*pos.__pos的下划线是两道短下划线组合在一起*/
 fsetpos (stream, &pos);    /*用 fgetpos () 设置读写位置 */
 printf ("offset = %d\n", ftell (stream) );
 fclose (stream) ;
}

运行程序得:

offset = 5
offset = 0
offset = 10



~       

给fpos_t类型的变量赋值

原文:http://blog.csdn.net/wangjiaweiwei/article/details/43577313

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!