码迷,mamicode.com
首页 > 其他好文 > 详细

给fpos_t类型的变量赋值

时间:2015-02-06 23:14:33      阅读:1730      评论:0      收藏:0      [点我收藏+]

标签:c语言   linux   结构   

头文件
#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类型的变量赋值

标签:c语言   linux   结构   

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

(1)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!