1 Star 0 Fork 0

godeyer / clang

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
fstat2.c 814 Bytes
一键复制 编辑 原始数据 按行查看 历史
godeyer 提交于 2024-01-19 14:10 . 初次提交
//test.c
#include<stdio.h>
//这个函数用来打印FILE内部的字段
void printFILE(FILE *fp){
printf("fp->_ptr=%s\n",fp->_ptr);
printf("fp->_cnt=%d\n",fp->_cnt);
printf("fp->_base=%s\n",fp->_base);
printf("fp->_flag=%d\n",fp->_flag);
printf("fp->_file=%d\n",fp->_file);
printf("fp->_charbuf=%d\n",fp->_charbuf);
printf("fp->_bufsiz=%d\n",fp->_bufsiz);
printf("fp->_tmpfname=%s\n",fp->_tmpfname);
printf("-------------------------------------");
printf("-------------------------------------\n");
}
int main(){
FILE* fp = fopen("./passwd","r"); //打开test.c文件,即本文件
printFILE(fp);
char buf[20];
fread(buf,1,5,fp); //读取fp中的数据
printFILE(fp);
fclose(fp); //关闭fp
printFILE(fp);
return 0;
}
1
https://gitee.com/zzzman/clang.git
git@gitee.com:zzzman/clang.git
zzzman
clang
clang
master

搜索帮助